:root {
  --bg: #F7F3F2;
  --surface: #fffdfc;
  --surface-soft: #fbf8f7;
  --brand: #5A2132;
  --brand-dark: #35131d;
  --brand-mid: #7c4052;
  --brand-light: #e8dce0;
  --line: rgba(90, 33, 50, 0.13);
  --shadow: 0 20px 60px rgba(90, 33, 50, 0.14);
  --radius: 24px;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg), var(--surface-soft));
  color: var(--brand-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 252, 0.94);
  box-shadow: 0 12px 40px rgba(90, 33, 50, 0.1);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.brand small,
.footer-brand p {
  display: block;
  margin: 2px 0 0;
  color: var(--brand-mid);
  font-size: 0.76rem;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(90, 33, 50, 0.09);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.38);
}

.brand-mark.small {
  width: 50px;
  height: 50px;
}

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

.nav-links a {
  border-radius: 999px;
  color: var(--brand-mid);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--brand-light);
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: var(--brand);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.landing-board {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - var(--nav-height));
  margin: 0 auto;
  padding: 18px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 18px;
}

.hero-card,
.panel,
.contact-strip,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255, 253, 252, 0.78);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  min-height: clamp(570px, calc(100svh - 128px), 740px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(53, 19, 29, 0.16), rgba(53, 19, 29, 0.74)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Bosphorus_skyline_4.jpg?width=2560") center / cover;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 243, 242, 0.28);
  border-radius: 18px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 42px;
  color: var(--bg);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-mid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-card .eyebrow {
  color: var(--brand-light);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 5.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--brand-light);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions,
.slider-controls,
.contact-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  padding: 0 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--brand);
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(90, 33, 50, 0.22);
}

.btn.secondary {
  background: rgba(247, 243, 242, 0.16);
  border-color: rgba(247, 243, 242, 0.46);
  color: var(--bg);
  backdrop-filter: blur(14px);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(247, 243, 242, 0.22);
  background: rgba(247, 243, 242, 0.16);
  backdrop-filter: blur(18px);
}

.hero-proof span {
  min-width: 0;
  color: var(--bg);
  font-weight: 700;
  padding: 16px 18px;
}

.hero-proof b {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-light);
  font-size: 0.74rem;
}

.panel-stack {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.panel {
  min-width: 0;
  border-radius: 20px;
  padding: 20px;
}

.panel h2,
.contact-strip h2,
.site-footer h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.panel h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--brand);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.service-rail {
  grid-auto-columns: minmax(178px, 42%);
}

.service-card,
.destination-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(90, 33, 50, 0.14);
}

.service-card {
  min-height: 134px;
  padding: 16px;
}

.service-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card h3,
.destination-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.service-card p,
.destination-card p,
.contact-copy p,
.footer-brand p {
  color: var(--brand-mid);
  line-height: 1.5;
}

.service-card p,
.destination-card p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.destination-rail {
  grid-auto-columns: minmax(220px, 48%);
}

.destination-card {
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.08);
}

.destination-card div {
  padding: 13px 14px 15px;
}

.compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 0;
}

.mini-panel {
  padding: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 15px;
}

.why-grid span {
  min-width: 0;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--brand-mid);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: normal;
  text-wrap: balance;
  padding: 10px 11px;
}

.why-grid span::before {
  content: attr(data-icon);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.journey {
  display: grid;
  gap: 10px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.journey li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-mid);
  font-size: 0.86rem;
  font-weight: 750;
}

.journey span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  color: var(--bg);
  font-size: 0.75rem;
}

.social-float {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-link {
  --platform: var(--brand);
  --platform-shadow: rgba(90, 33, 50, 0.22);
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 243, 242, 0.42);
  border-radius: 17px;
  background: var(--surface);
  color: var(--bg);
  box-shadow: 0 12px 28px rgba(90, 33, 50, 0.16);
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--platform);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.social-link svg,
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link span {
  position: absolute;
  right: calc(100% + 12px);
  min-width: max-content;
  border-radius: 999px;
  background: var(--platform);
  color: #fff;
  box-shadow: 0 14px 30px var(--platform-shadow);
  font-size: 0.76rem;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  padding: 9px 12px;
  transform: translateX(8px) scale(0.92);
  transform-origin: right center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  box-shadow: 0 18px 36px var(--platform-shadow);
}

.social-link:hover::before,
.social-link:focus-visible::before {
  transform: scale(1.08);
}

.social-link:hover span,
.social-link:focus-visible span {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.facebook {
  --platform: #1877f2;
  --platform-shadow: rgba(24, 119, 242, 0.28);
}

.instagram {
  --platform: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
  --platform-shadow: rgba(221, 42, 123, 0.28);
}

.tiktok {
  --platform: #111111;
  --platform-shadow: rgba(0, 0, 0, 0.24);
}

.email {
  --platform: #ea4335;
  --platform-shadow: rgba(234, 67, 53, 0.24);
}

.whatsapp {
  --platform: #25d366;
  --platform-shadow: rgba(37, 211, 102, 0.28);
}

.contact-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.82fr);
  gap: 22px;
  border-radius: var(--radius);
  padding: 22px;
}

.contact-strip h2 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.contact-items a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 13px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form span {
  color: var(--brand-mid);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--brand-dark);
  outline: none;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(90, 33, 50, 0.45);
  box-shadow: 0 0 0 4px rgba(90, 33, 50, 0.08);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--brand-mid);
  font-size: 0.82rem;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 22px;
  border-radius: var(--radius);
  padding: 22px;
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--brand-mid);
  font-size: 0.86rem;
  font-weight: 750;
  margin-bottom: 8px;
}

.site-footer .footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--brand-mid);
  padding: 5px 9px 5px 5px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--platform);
  color: #fff;
  padding: 6px;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: var(--platform);
  color: #fff;
  transform: translateX(3px);
}

.copyright {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  border-top: 1px solid var(--line);
  color: var(--brand-mid);
  font-size: 0.82rem;
  padding-top: 16px;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .landing-board {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 560px;
  }

  .panel-stack {
    grid-template-rows: none;
  }

  .contact-strip,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 70px;
  }

  .nav,
  .landing-board,
  .contact-strip,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-height) 14px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: 13px;
    padding: 13px 14px;
  }

  .landing-board {
    padding-top: 14px;
    gap: 14px;
  }

  .hero-card {
    min-height: 520px;
    border-radius: 20px;
  }

  .hero-card::before {
    inset: 12px;
  }

  .hero-copy {
    padding: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

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

  .panel-stack,
  .compact-grid,
  .contact-strip,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .panel,
  .contact-strip,
  .site-footer {
    padding: 16px;
    border-radius: 18px;
  }

  .panel-head {
    align-items: flex-start;
  }

  .service-rail {
    grid-auto-columns: minmax(205px, 78%);
  }

  .destination-rail {
    grid-auto-columns: minmax(245px, 86%);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .social-float {
    right: 10px;
    gap: 7px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

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

  .social-link span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
