@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Architects+Daughter&family=Inter:wght@300;400;500;600&display=swap');

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --orange:       #E8541A;
  --orange-hover: #C94416;
  --orange-light: #FEF0E9;
  --text:         #1A1A1A;
  --text-mid:     #4A4545;
  --text-light:   #918D88;
  --bg:           #FAFAF7;
  --bg-cream:     #FAF8F3;
  --white:        #FFFFFF;
  --border:       #E8E2D8;
  --dark:         #243B2E;

  --font-serif: 'Marcellus', Georgia, serif;
  --font-hand:  'Architects Daughter', cursive;
  --font-sans:  'Inter', -apple-system, system-ui, sans-serif;

  --radius:     12px;
  --radius-sm:  6px;
  --nav-h:      60px;
  --max-width:  1100px;
  --shadow:     0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; color: var(--text); background: var(--bg); }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: 60px 0; }
.section--tight { padding: 36px 0; }

.bg-white  { background: var(--white); }
.bg-cream  { background: var(--bg-cream); }
.bg-off    { background: var(--bg); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img { height: 40px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: .01em;
  transition: color .18s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--orange); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background .18s;
}
.nav__burger:hover span { background: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
}
.lang-toggle__item {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 5px 11px;
  text-decoration: none;
  transition: color .15s, background .15s;
  border-radius: 0;
  line-height: 1;
}
.lang-toggle__item + .lang-toggle__item {
  border-left: 1px solid var(--border);
}
.lang-toggle__item--active {
  background: var(--orange);
  color: var(--white);
}
.lang-toggle__item:not(.lang-toggle__item--active):hover {
  color: var(--orange);
  background: var(--bg);
}
.header-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.header-social-link svg {
  width: 26px;
  height: 26px;
  display: block;
}
.header-social-link:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav__mobile__socials { display: none; }

.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 20px;
  z-index: 99;
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-mid);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a.active,
.nav__mobile a:hover { color: var(--orange); }

/* ── Hero (Homepage) ────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-h);
  background: var(--dark) url('../images/hero/datca-liman-hero-revize.jpg') center center/cover no-repeat;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(12, 28, 22, 0.42) 0%,
      rgba(12, 28, 22, 0.30) 38%,
      rgba(12, 28, 22, 0.12) 68%,
      rgba(12, 28, 22, 0.04) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(20, 45, 34, 0.16) 0%,
      rgba(20, 45, 34, 0.20) 45%,
      rgba(20, 45, 34, 0.30) 100%
    );
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 76px 22px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  width: clamp(105px, 13vw, 165px);
  height: auto;
  margin-bottom: 28px;
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.95))
    drop-shadow(0 0 8px rgba(255,255,255,.85))
    drop-shadow(0 0 20px rgba(255,255,255,.55))
    drop-shadow(0 3px 10px rgba(0,0,0,.35));
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 11vw, 72px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  max-width: 720px;
  margin: 0 auto 24px;
  text-shadow: 0 3px 18px rgba(0,0,0,.42);
}
.hero__lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 4.4vw, 24px);
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero__closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 6vw, 34px);
  color: #E48A43;
  line-height: 1.45;
  margin-top: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero__cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  margin-top: 32px;
  transition: background .18s;
}
.hero__cta:hover { background: var(--orange-hover); color: #fff; }

/* ── Doodle Band (decorative, no text) ───────────────────────── */
.doodle-band {
  width: 100%;
  background: var(--bg);
  padding: 16px 0 0;
}
.doodle-band__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Illustrated Page Hero (inner pages) ──────────────────────
   Reusable full-width illustration header. The artwork carries its
   own eyebrow/title/description baked in — no text is overlaid by
   default. Use the optional --with-title variant only for headers
   whose artwork has no embedded title. */
.illustrated-page-hero {
  width: 100%;
  background: var(--bg-cream);
  margin-top: var(--nav-h);
  padding: 0;
  overflow: visible;
}
.illustrated-page-hero__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.illustrated-page-hero--with-title {
  position: relative;
}
.illustrated-page-hero__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(48%, 720px);
  padding: 0 18px;
}
.illustrated-page-hero__eyebrow {
  display: block;
  font-family: var(--font-hand);
  font-size: clamp(.9rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  color: var(--orange);
  margin-bottom: clamp(5px, .8vw, 12px);
}
.illustrated-page-hero__overlay-title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.9vw, 4.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.06;
  text-wrap: balance;
}
.illustrated-page-hero__subtitle {
  max-width: 620px;
  margin: clamp(6px, 1vw, 16px) auto 0;
  color: var(--text-mid);
  font-size: clamp(.68rem, 1.25vw, 1.2rem);
  line-height: 1.45;
  text-wrap: balance;
}

/* ── Section Heading ────────────────────────────────────────── */
.section-heading { margin-bottom: 36px; }
.section-heading--center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 17px;
  color: var(--orange);
  margin-bottom: 6px;
  line-height: 1;
}

.section-heading h2,
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.22;
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 14.5px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}
.section-heading--editorial p {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.05rem);
  font-weight: 400;
  color: var(--text);
  max-width: 600px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}

/* ── Tags ───────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--orange-light);
  color: var(--orange);
  margin: 0 4px 4px 0;
}
.tag--gray {
  background: #F0EFEC;
  color: var(--text-light);
}

/* ── Featured Cards (Homepage — Koylar & Mekanlar) ─────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
}
.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.feature-card:hover .feature-card__img img { transform: scale(1.04); }

.feature-card__body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature-card__tags { margin-bottom: 8px; }
.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.22;
}
.feature-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}
.feature-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.feature-card__link:hover { color: var(--orange-hover); }

/* ── Venue Feature Cards (Homepage — no image) ──────────────── */
.venue-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s;
}
.venue-feature-card:hover { box-shadow: var(--shadow); }

.venue-feature-card__number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.venue-feature-card__body { flex: 1; }
.venue-feature-card__tags { margin-bottom: 5px; }
.venue-feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 5px;
}
.venue-feature-card__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 10px;
}
.venue-feature-card__link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── Bay Cards (Koylar page) ────────────────────────────────── */
.bay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.bay-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.bay-card:hover { box-shadow: var(--shadow-md); }

.bay-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--border);
}
.bay-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.bay-card:hover .bay-card__img img { transform: scale(1.04); }

.bay-card__body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bay-card__tags { margin-bottom: 8px; }
.bay-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.22;
}
.bay-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}
.bay-card__meta-row {
  font-size: 12px;
  color: var(--text-light);
}
.bay-card__meta-row strong {
  color: var(--text-mid);
  font-weight: 600;
}
.bay-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 12px;
}

/* ── Portakal Notu ──────────────────────────────────────────── */
.portakal-notu {
  border-left: 2.5px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 8px 12px;
  background: var(--orange-light);
  margin-bottom: 14px;
}
.portakal-notu__label {
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 3px;
  display: block;
}
.portakal-notu p,
.portakal-notu__text {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── Map Button ─────────────────────────────────────────────── */
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 7px 14px;
  border-radius: 20px;
  transition: background .18s, color .18s;
  align-self: flex-start;
}
.map-btn:hover {
  background: var(--orange);
  color: #fff;
}

/* ── Intro block (homepage) ─────────────────────────────────── */
.intro-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.intro-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.05rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
}

/* ── About page ─────────────────────────────────────────────── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 8px;
  line-height: 1.22;
}
.about-text p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-quote {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-quote__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.about-quote__attr {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .06em;
}

/* ── Pazar & Market ─────────────────────────────────────────── */
.pazar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.pazar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.pazar-card__day {
  display: inline-block;
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 16px;
  color: var(--orange);
  margin-bottom: 6px;
}
.pazar-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pazar-card__tags { margin-bottom: 10px; }
.pazar-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 8px;
}
.pazar-card__time {
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.market-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.market-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.market-item__icon { font-size: 22px; flex-shrink: 0; }
.market-item__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.market-item__row {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 6px;
}
.market-item__row:last-of-type { margin-bottom: 10px; }

/* Useful information */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-card__icon { font-size: 24px; flex-shrink: 0; }
.info-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.info-card__row {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 8px;
}
.info-card__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  transition: background .18s, color .18s;
}
.info-card__link:hover { background: var(--orange); color: #fff; }

/* Places to visit */
.place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.place-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.place-card:hover { box-shadow: var(--shadow-md); }
.place-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--border);
}
.place-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.place-card:hover .place-card__img img { transform: scale(1.04); }
.place-card__no-img {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  background: var(--orange-light);
}
.place-card__body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.place-card__tags { margin-bottom: 8px; }
.place-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.22;
}
.place-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
  flex: 1;
}
.place-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}
.place-card__meta-row {
  font-size: 12px;
  color: var(--text-light);
}
.place-card__meta-row strong {
  color: var(--text-mid);
  font-weight: 600;
}

/* ── Mekanlar (inner page) ──────────────────────────────────── */
.venue-section { margin-bottom: 48px; }
.venue-section__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.venue-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.venue-card:hover { box-shadow: var(--shadow-md); }
.venue-card__title,
.venue-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.22;
  margin-bottom: 8px;
}
.venue-card__tags { margin-bottom: 8px; }
.venue-card__desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}
.venue-card__who,
.venue-card__info {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 3px;
}
.venue-card__info b {
  color: var(--text-mid);
  font-weight: 600;
}
.venue-card__info:last-of-type { margin-bottom: 14px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
}

.footer__illustration-wrap {
  width: 100%;
  padding: 32px 0 0;
}
.footer__illustration {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.footer__content {
  padding: 28px 0 28px;
}

.footer__text-block {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.footer__logo-img {
  width: 140px;
  height: auto;
  margin: 0 auto 18px;
  display: block;
}
.footer__quote {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer__sub {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 6px;
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-light);
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.footer__col-title {
  font-family: var(--font-hand);
  font-style: normal;
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 10px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 13px;
  color: var(--text-mid);
  transition: color .18s;
}
.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-light);
}

/* ── Utility ────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }

.error-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
  background: var(--bg-cream);
}
.error-page img { width: 130px; }
.error-page h1 { font-family: var(--font-serif); font-size: clamp(2rem, 6vw, 4rem); font-weight: 400; }
.error-page p { max-width: 520px; color: var(--text-mid); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-grid   { grid-template-columns: 1fr 1fr; }
  .about-wrap     { grid-template-columns: 1fr; gap: 28px; }
  .footer__nav-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  /* Nav */
  .nav__links               { display: none; }
  .nav__burger,
  .nav__mobile              { display: flex; }
  .header-actions            { gap: 10px; }
  .header-social-link        { display: none; }
  .lang-toggle               { border-radius: 16px; }
  .lang-toggle__item         { padding: 5px 10px; font-size: 11px; }
  .nav__burger               { padding: 8px 6px; }
  .nav__burger span          { width: 24px; height: 2px; }

  /* Mobile nav extras — globally hidden, shown only inside open mobile nav */
  .nav__mobile__socials {
    display: flex;
    gap: 20px;
    padding: 14px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .nav__mobile__socials a {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-mid);
    border-bottom: none !important;
    padding: 0 !important;
  }
  .nav__mobile__socials a:hover { color: var(--orange); }
  .nav__mobile__socials svg { width: 22px; height: 22px; }

  .illustrated-page-hero__overlay { width: 62%; padding: 0 8px; }
  .illustrated-page-hero__subtitle { font-size: 12px; opacity: .85; }

  /* Hero */
  .hero__inner              { padding: 76px 22px 56px; }
  .hero__logo               { width: 110px; height: auto; margin-bottom: 20px; }

  /* Grids */
  .feature-grid             { grid-template-columns: 1fr; }
  .bay-grid                 { grid-template-columns: 1fr; }
  .place-grid               { grid-template-columns: 1fr 1fr; }
  .info-grid                { grid-template-columns: 1fr; }
  .pazar-grid               { grid-template-columns: 1fr; }
  .footer__nav-grid         { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Sections */
  .section                  { padding: 40px 0; }
  .section--tight           { padding: 28px 0; }

  /* Footer */
  .footer__illustration-wrap { padding: 24px 0 0; }
  .footer__nav-grid          { grid-template-columns: 1fr 1fr; }
  .footer__logo-img          { width: 100px; }
}

@media (max-width: 420px) {
  .place-grid               { grid-template-columns: 1fr; }
  .bay-card__meta           { display: none; }
}
