:root {
  --green-900: #0e3f2b;
  --green-800: #164f37;
  --green-700: #236348;
  --blue-700: #1d5d8f;
  --blue-600: #2b84bd;
  --gold-500: #d39b2d;
  --ink: #1d2529;
  --muted: #63726b;
  --line: #dfe8e2;
  --soft: #f5f8f5;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 45, 35, 0.13);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  color-scheme: light;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 10px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(223, 232, 226, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 246px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: #23302b;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--blue-700);
}

.language-link {
  min-width: 42px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-900);
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle i {
  position: relative;
}

.nav-toggle i::before,
.nav-toggle i::after {
  position: absolute;
  left: 0;
}

.nav-toggle i::before {
  top: -5px;
}

.nav-toggle i::after {
  top: 5px;
}

.hero {
  position: relative;
  min-height: clamp(500px, calc(100svh - 190px), 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 32, 24, 0.78) 0%, rgba(8, 42, 31, 0.52) 39%, rgba(8, 42, 31, 0.08) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 78px 0 92px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 800;
}

.hero p {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 600;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(8, 38, 28, 0.26);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading:not(.align-left) {
  text-align: left;
}

.section-heading h2,
.guide-list h2,
.contact-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.contact-card p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.activities {
  background: var(--white);
  padding-top: 40px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.activity-grid article {
  min-width: 0;
  padding: 28px 18px 30px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.activity-grid article:first-child {
  border-left: 0;
}

.activity-grid h3 {
  margin: 14px 0 8px;
  color: var(--green-900);
  font-size: 16px;
}

.activity-grid p {
  margin: 0;
  color: #52625b;
  font-size: 13px;
  line-height: 1.55;
}

.line-icon {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  color: var(--green-900);
}

.line-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid currentColor;
  border-radius: 12px;
}

.bike::before {
  border-radius: 50%;
  box-shadow: 24px 0 0 -2px var(--white), 24px 0 0 0 currentColor;
  width: 20px;
  height: 20px;
  margin-top: 14px;
}

.paddle::before {
  width: 36px;
  height: 8px;
  border-radius: 999px;
  transform: rotate(-28deg);
  margin: 16px 0 0 3px;
}

.trail::before {
  border-radius: 50%;
}

.view::before {
  border-radius: 999px 999px 10px 10px;
}

.picnic::before {
  border-radius: 4px 4px 16px 16px;
}

.cup::before {
  height: 24px;
  margin-top: 10px;
  border-radius: 0 0 13px 13px;
}

.accommodation {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

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

.feature-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(19, 56, 40, 0.08);
}

.card-image,
.thumb {
  background-repeat: no-repeat;
  background-size: 300% 100%;
}

.card-image {
  background-image: url("../img/accommodation-triptych.png");
  aspect-ratio: 1.55;
  background-color: var(--soft);
}

.thumb {
  background-image: url("../img/guide-cards-triptych.png");
}

.triptych-one,
.bungalow-thumb {
  background-position: left center;
}

.villa-image,
.breakfast-thumb {
  background-position: center center;
}

.hotel-image,
.trail-thumb {
  background-position: right center;
}

.lake-thumb {
  background-image: url("../img/hero-sapanca-lake.png");
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 18px 20px 22px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 20px;
}

.card-body p {
  margin: 0;
  color: #52625b;
  font-size: 14px;
}

.card-body a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 13px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.card-body a::after,
.guide-item strong::after {
  content: "→";
  margin-left: 7px;
  color: var(--blue-700);
}

.split-section {
  background: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 76px;
  align-items: start;
}

.timeline {
  position: relative;
  display: grid;
  gap: 32px;
  padding-left: 18px;
}

.timeline::before {
  position: absolute;
  top: 6px;
  bottom: 8px;
  left: 3px;
  width: 2px;
  background: var(--green-700);
  content: "";
}

.day {
  position: relative;
}

.day::before {
  position: absolute;
  top: 7px;
  left: -20px;
  width: 12px;
  height: 12px;
  background: var(--green-700);
  border-radius: 50%;
  content: "";
}

.day strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 14px;
  text-transform: uppercase;
}

.day p {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin: 8px 0;
  color: #4d5c55;
  font-size: 14px;
}

.day span {
  color: var(--muted);
  font-weight: 800;
}

.guide-list {
  padding-top: 3px;
}

.guide-list h2 {
  margin-bottom: 22px;
}

.guide-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.thumb {
  min-height: 86px;
  border-radius: var(--radius);
  background-color: var(--soft);
}

.guide-item strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.guide-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.email-box {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-width: 350px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(19, 56, 40, 0.08);
}

.mail-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  border-radius: 50%;
  background: var(--green-800);
}

.mail-icon::before {
  width: 28px;
  height: 18px;
  margin: auto;
  border: 2px solid var(--white);
  border-radius: 3px;
  content: "";
}

.email-box small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.email-box strong {
  display: block;
  color: var(--green-900);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--green-900);
  color: var(--white);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 700;
}

.content-hero {
  padding: 72px 0 52px;
  background:
    linear-gradient(90deg, rgba(14, 63, 43, 0.9), rgba(29, 93, 143, 0.62)),
    url("../img/hero-sapanca-lake.png") center / cover;
  color: var(--white);
}

.content-hero .breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 800;
}

.content-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.content-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

.article-content {
  max-width: 820px;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.14;
}

.article-content h3 {
  margin: 24px 0 8px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.25;
}

.article-content p,
.article-content li {
  color: #4d5c55;
  font-size: 17px;
}

.article-content ul {
  padding-left: 22px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 6px;
}

.info-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(19, 56, 40, 0.07);
}

.info-card {
  padding: 20px;
}

.info-card h3 {
  margin-top: 0;
}

.note-box {
  margin: 30px 0;
  padding: 20px;
  border-left: 4px solid var(--gold-500);
  background: #fbf7ed;
  color: #59452a;
}

.article-sidebar {
  position: sticky;
  top: 104px;
}

.side-card {
  padding: 18px;
}

.side-card h2 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 20px;
}

.side-card a {
  display: block;
  min-height: 40px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.side-card a:first-of-type {
  border-top: 0;
}

.sources {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sources a {
  color: var(--blue-700);
  font-weight: 800;
}

.directory-intro {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 34px;
}

.directory-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(19, 56, 40, 0.07);
}

.directory-card::before {
  content: none;
}

.directory-card strong {
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.25;
}

.directory-card span,
.directory-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.directory-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 2px;
  color: var(--blue-700);
  font-weight: 800;
}

.directory-card a::after {
  content: "↗";
  margin-left: 7px;
}

.rank-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.rank-list b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 14px;
}

.rank-list strong {
  display: block;
  color: var(--green-900);
  font-size: 18px;
}

.rank-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 218px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 6px;
  }

  .language-link {
    justify-content: flex-start;
    border: 0;
  }

  .hero {
    min-height: 610px;
  }

  .hero img {
    object-position: 62% center;
  }

  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .activity-grid article:nth-child(4) {
    border-left: 0;
  }

  .activity-grid article:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.88fr) 1fr;
  }

  .split-layout,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .email-box {
    min-width: 0;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 28, 21, 0.82) 0%, rgba(4, 28, 21, 0.52) 45%, rgba(4, 28, 21, 0.12) 100%),
      linear-gradient(90deg, rgba(4, 28, 21, 0.36), rgba(4, 28, 21, 0.05));
  }

  .hero-content {
    padding: 170px 0 46px;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

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

  .activity-grid article {
    border-top: 1px solid var(--line);
  }

  .activity-grid article:nth-child(odd) {
    border-left: 0;
  }

  .activity-grid article:first-child,
  .activity-grid article:nth-child(2) {
    border-top: 0;
  }

  .feature-card {
    display: block;
  }

  .card-image {
    aspect-ratio: 1.35;
  }

  .split-layout {
    gap: 52px;
  }

  .day p {
    grid-template-columns: 58px 1fr;
    font-size: 13px;
  }

  .guide-item {
    grid-template-columns: 104px 1fr;
    gap: 14px;
  }

  .thumb {
    min-height: 78px;
  }

  .email-box {
    grid-template-columns: 48px 1fr;
    padding: 15px;
  }

  .mail-icon {
    width: 48px;
    height: 48px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 0;
  }

  .content-hero {
    padding: 52px 0 42px;
  }

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

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

@media (max-width: 420px) {
  .brand img {
    width: 166px;
  }

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

  .activity-grid article {
    border-left: 0;
  }

  .activity-grid article:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .guide-item {
    grid-template-columns: 1fr;
  }

  .thumb {
    min-height: 150px;
  }
}

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