/* === CRITICAL OVERRIDE LAYER — v7 === */
.header-social { display: flex !important; gap: 10px !important; align-items: center; }
.header-social a { display: flex !important; align-items: center; justify-content: center; width: 32px !important; height: 32px !important; flex-shrink: 0; color: var(--navy, #1E3A5F); }
.header-social svg { width: 18px !important; height: 18px !important; flex-shrink: 0; }
.gallery-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 14px; }
.gallery-grid figure { aspect-ratio: 1/1; overflow: hidden; cursor: pointer; margin: 0; }
.gallery-grid figure img { width: 100% !important; height: 100% !important; object-fit: cover; }
.feat-overlay { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.feat-overlay-img { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; }

/* ================================================
   HITALY GARDEN · Wine House
   Ana sitenin ortak stil dosyası
   Marka: lacivert #1E3A5F · altın #B8962E · krem #F5EEDC
================================================ */

:root {
  --cream: #F5EEDC;
  --cream-soft: #EDE3CC;
  --cream-warm: #FAF6EA;
  --bg-card: #FFFFFF;
  --navy: #1E3A5F;
  --navy-deep: #142844;
  --gold: #B8962E;
  --gold-soft: #C9A848;
  --gold-light: #E8D098;
  --text: #2B1D0E;
  --text-soft: #6B5B44;
  --text-muted: #8C7B62;
  --border: rgba(184, 150, 46, 0.18);
  --shadow-soft: 0 4px 20px rgba(43, 29, 14, 0.06);
  --shadow-med: 0 12px 40px rgba(43, 29, 14, 0.10);
  --shadow-lg: 0 20px 60px rgba(43, 29, 14, 0.15);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-name: 'Lora', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
button { font-family: inherit; cursor: pointer; }

/* ============= TYPOGRAPHY ============= */
.display { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
.italic-display { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============= LAYOUT ============= */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

.section { padding: 110px 0; }
.section-tight { padding: 70px 0; }

/* ============= HEADER ============= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s ease;
  background: rgba(245, 238, 220, 0);
  backdrop-filter: blur(0);
}
.site-header.scrolled {
  background: rgba(245, 238, 220, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
  padding: 12px 0;
}
.site-header.solid {
  background: rgba(245, 238, 220, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  grid-column: 2;
}
.brand-mark img {
  height: 64px;
  width: auto;
  transition: height .3s ease;
}
.scrolled .brand-mark img,
.solid .brand-mark img { height: 52px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  grid-column: 1;
  justify-self: start;
}

.header-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
.header-social {
  display: flex;
  gap: 10px;
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--navy);
  transition: all .25s ease;
}
.header-social a:hover { color: var(--gold); transform: translateY(-2px); }
.header-social svg { width: 18px; height: 18px; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active::after,
.main-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold);
}
.main-nav a.active { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream-warm);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
  color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream-warm);
}
.btn-gold {
  background: var(--gold);
  color: var(--cream-warm);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  color: var(--navy);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 32px 100px;
  background-image: url('/images/hitaly-cephe.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 238, 220, 0.32) 0%, rgba(245, 238, 220, 0.4) 50%, rgba(245, 238, 220, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner, .hero-scroll-hint { position: relative; z-index: 2; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  animation: heroFadeIn 1.2s ease-out;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: heroFadeIn 1.2s ease-out .15s both;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--navy);
  text-shadow: 0 2px 24px rgba(245, 238, 220, 0.85);
  animation: heroFadeIn 1.2s ease-out .3s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  animation: heroFadeIn 1.2s ease-out .45s both;
}
.hero-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 36px;
  animation: heroFadeIn 1.2s ease-out .6s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease-out .75s both;
}
.hero-cta .btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.hero-cta .btn-outline:hover {
  background: var(--navy);
  color: var(--cream-warm);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
  animation: heroFadeIn 1.5s ease-out 1s both, scrollHint 2.5s ease-in-out 1.8s infinite;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============= PAGE HERO (smaller) ============= */
.page-hero {
  position: relative;
  padding: 200px 32px 100px;
  background: var(--cream-soft);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.page-hero h1 em { font-style: italic; color: var(--navy); font-weight: 400; }
.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-soft);
  max-width: 660px;
  margin: 0 auto;
}

/* ============= STORY SECTION ============= */
.story {
  background: var(--cream);
  position: relative;
}
.story::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 56px;
  background: var(--gold);
  opacity: 0.4;
  transform: translateX(-50%);
}
.story-content { text-align: center; max-width: 780px; margin: 0 auto; }
.story h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.story h2 em { color: var(--gold); font-style: italic; }
.story p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.story p strong { color: var(--text); font-weight: 600; }

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 38px auto;
  color: var(--gold);
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.divider-ornament svg { width: 18px; height: 18px; }

/* ============= STATS ============= */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ============= FEATURES ============= */
.features {
  background: var(--cream-soft);
  position: relative;
}
.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.features-header .eyebrow { margin-bottom: 16px; }
.features-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.features-header h2 em { color: var(--gold); font-style: italic; }
.features-header p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--text-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  background: var(--bg-card);
  padding: 48px 36px;
  border-radius: 2px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--border);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.feature:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.feature .feature-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 18px;
}
.feature p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* ============= QUOTE / TESTIMONIAL ============= */
.testimonial {
  background: var(--navy);
  color: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 240px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}
.testimonial-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-stars { color: var(--gold-light); font-size: 18px; letter-spacing: 0.3em; margin-bottom: 28px; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--cream-warm);
}
.testimonial cite {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.testimonial cite::before { content: '— '; }

/* ============= CTA BAND ============= */
.cta-band {
  background: var(--cream-soft);
  text-align: center;
  padding: 90px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 30px;
}
.cta-band .btn { margin: 4px; }

/* ============= MENU CARDS PAGE ============= */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.menu-card {
  position: relative;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 70px 40px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all .35s ease;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 150, 46, 0.04), rgba(30, 58, 95, 0.04));
  opacity: 0;
  transition: opacity .35s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.menu-card:hover::before { opacity: 1; }
.menu-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.menu-card-icon svg { width: 100%; height: 100%; stroke-width: 1.1; }
.menu-card .eyebrow {
  display: block;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.menu-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.menu-card .menu-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: gap .25s ease;
}
.menu-card:hover .menu-arrow { gap: 14px; color: var(--navy); }

/* ============= BLOG ============= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 38px 34px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
  border-color: var(--gold-soft);
}
.blog-meta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.blog-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
}

/* ============= CONTACT ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.contact-list { list-style: none; padding: 0; margin: 28px 0; }
.contact-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact-list .ci-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-list .ci-value {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}
.contact-list .ci-value a { color: var(--text); }
.contact-list .ci-value a:hover { color: var(--gold); }

.event-list {
  background: var(--cream-soft);
  padding: 30px 32px;
  border-left: 3px solid var(--gold);
  margin-top: 28px;
}
.event-list h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
}
.event-list ul { list-style: none; padding: 0; }
.event-list li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--text-soft);
  padding: 6px 0;
  position: relative;
  padding-left: 22px;
}
.event-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 10px;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  padding: 44px 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form > p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  transition: border-color .25s ease, background .25s ease;
  border-radius: 0;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.12);
}
.field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.contact-form button[type=submit] { width: 100%; margin-top: 8px; }
.form-message {
  margin-top: 16px;
  padding: 14px 16px;
  font-size: 14px;
  display: none;
}
.form-message.success { display: block; background: rgba(184, 150, 46, 0.1); color: var(--navy); border-left: 3px solid var(--gold); }
.form-message.error { display: block; background: rgba(220, 53, 69, 0.08); color: #842029; border-left: 3px solid #842029; }

/* ============= MAP EMBED ============= */
.map-wrap {
  margin-top: 70px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--navy);
  color: rgba(250, 246, 234, 0.78);
  padding: 80px 0 30px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) saturate(100%) invert(96%) sepia(11%) saturate(485%) hue-rotate(348deg) brightness(106%) contrast(96%);
}
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(232, 208, 152, 0.85);
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(250, 246, 234, 0.7);
}
.footer-col a:hover { color: var(--gold-light); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 208, 152, 0.25);
  color: var(--gold-light);
  transition: all .25s ease;
}
.social-row a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-row svg { width: 18px; height: 18px; }

.footer-hours {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250, 246, 234, 0.72);
}
.footer-hours .closed { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(232, 208, 152, 0.15);
  padding-top: 26px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 234, 0.5);
}
.footer-bottom .heart { color: var(--gold); }

/* ============= RESPONSIVE ============= */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .main-nav { display: none; }
  .brand-mark { grid-column: 1; justify-self: start; }
  .brand-mark img { height: 48px; }
  .header-right { grid-column: 3; gap: 10px; }
  .header-social { display: none !important; }
  .header-cta { display: inline-flex !important; padding: 10px 18px !important; font-size: 12px !important; }
  .menu-toggle { display: flex !important; align-items: center; justify-content: center; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .container-narrow { padding: 0 22px; }
  .section { padding: 80px 0; }
  .header-inner { padding: 0 18px; grid-template-columns: auto 1fr auto; gap: 10px; }

  .main-nav { display: none; }
  .header-right .header-cta { display: none !important; }
  .header-right { gap: 8px; }
  .menu-toggle { display: flex !important; align-items: center; justify-content: center; }
  .brand-mark { grid-column: 1; justify-self: start; }
  .brand-mark img { height: 42px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-warm);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-med);
  }
  .main-nav.open a { font-size: 18px; padding: 8px 0; }

  .hero {
    padding: 140px 22px 80px;
  }
  .hero::after { background-image: url('/images/hitaly-cephe-m.jpg'); }
  .page-hero { padding: 140px 22px 60px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial::before { font-size: 160px; top: 12px; }
  .contact-form { padding: 32px 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero { background-attachment: scroll; }
}

/* ============= STORY WITH IMAGE (Hakkimizda style) ============= */
.story-with-image {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.story-with-image .story-text { text-align: left; }
.story-with-image .story-text .eyebrow { display: inline-block; }
.story-with-image .story-text h2 { text-align: left; }
.story-with-image .story-text .divider-ornament { margin: 28px 0; justify-content: flex-start; }
.story-with-image .story-text .divider-ornament::before { display: none; }

.story-image-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.story-image-card:hover img { transform: scale(1.04); }

.story-image-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--cream-warm);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.story-image-card-overlay > div h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--cream-warm);
}
.story-image-card-overlay > div p {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}
.story-image-card-overlay > div .big-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

/* ============= IMAGE-TEXT SPLIT ============= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
}
.split-section.reverse .split-image { order: 2; }
.split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.split-image:hover img { transform: scale(1.05); }
.split-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 22px;
}
.split-text h2 em { color: var(--gold); font-style: italic; }
.split-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.split-text p strong { color: var(--text); font-weight: 600; }

/* ============= FEATURES WITH IMAGES ============= */
.feature-with-img {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}
.feature-with-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.feature-with-img .feat-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.feature-with-img .feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feature-with-img:hover .feat-img img { transform: scale(1.06); }
.feature-with-img .feat-body {
  padding: 32px 28px 36px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature-with-img .feat-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-with-img .feat-body .feature-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature-with-img .feat-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
}

/* ============= BLOG CARDS WITH IMG ============= */
.blog-card-img {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}
.blog-card-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.blog-card-img .bc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img .bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.blog-card-img:hover .bc-img img { transform: scale(1.06); }
.blog-card-img .bc-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============= GALLERY ============= */
.gallery-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.gallery-intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--navy);
  margin-bottom: 16px;
}
.gallery-intro h2 em { color: var(--gold); font-style: italic; }
.gallery-intro p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--text-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-soft);
}
.gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .35s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.gallery-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 40, 68, 0.5));
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-grid figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 68, 0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; animation: lbFadeIn .25s ease; }
.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lbZoomIn .35s ease;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 238, 220, 0.1);
  border: 1px solid rgba(232, 208, 152, 0.3);
  color: var(--cream-warm);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: all .2s ease;
  z-index: 201;
  border-radius: 50%;
}
.lightbox .lb-close { top: 28px; right: 28px; transform: none; font-size: 22px; }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox button:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lightbox .lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(250, 246, 234, 0.7);
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ============= MOBILE ADJUSTMENTS ============= */
@media (max-width: 980px) {
  .story-with-image { grid-template-columns: 1fr; gap: 40px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .split-section.reverse .split-image { order: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid figure.wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-grid figure.wide { grid-column: span 2; }
  .story-image-card-overlay { grid-template-columns: 1fr; gap: 14px; padding: 18px 22px; }
  .lightbox { padding: 20px; }
  .lightbox .lb-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .lightbox .lb-prev { left: 12px; width: 40px; height: 40px; }
  .lightbox .lb-next { right: 12px; width: 40px; height: 40px; }
}

/* === FEATURE OVERLAY CARDS (Hostinger style) === */
.feat-overlay {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.feat-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feat-overlay:hover .feat-overlay-img { transform: scale(1.06); }

.feat-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--bg-card);
  padding: 28px 24px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-radius: 2px;
}
.feat-overlay-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.15;
}
.feat-overlay-card .feature-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 12px;
}
.feat-overlay-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 980px) {
  .features-grid { grid-template-columns: 1fr !important; gap: 24px; }
}

@media (max-width: 720px) {
  .feat-overlay {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }
  .feat-overlay-img {
    position: relative !important;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .feat-overlay-card {
    position: relative;
    bottom: auto; left: auto; right: auto;
    padding: 24px 22px 28px;
    box-shadow: none;
  }
}

/* === STORY WITH FULL-HEIGHT IMAGE (Hostinger) === */
.story-fullheight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: stretch;
  min-height: 600px;
}
.story-fullheight .story-text { display: flex; flex-direction: column; justify-content: center; }
.story-fullheight .story-text h2 { text-align: left; }
.story-fullheight .story-image-tall {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 600px;
}
.story-fullheight .story-image-tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.story-fullheight .story-image-tall:hover img { transform: scale(1.04); }

@media (max-width: 980px) {
  .story-fullheight { grid-template-columns: 1fr; min-height: auto; }
  .story-fullheight .story-image-tall { min-height: 400px; }
}

/* === TESTIMONIAL SPLIT (image + text) === */
.testimonial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--navy);
  min-height: 480px;
}
.testimonial-split .ts-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.testimonial-split .ts-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-split .ts-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  text-align: center;
  color: var(--cream-warm);
}
.testimonial-split .testimonial-stars { color: var(--gold-light); font-size: 18px; letter-spacing: 0.3em; margin-bottom: 28px; }
.testimonial-split blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 28px;
}
.testimonial-split cite {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.testimonial-split cite::before { content: '— '; }

@media (max-width: 980px) {
  .testimonial-split { grid-template-columns: 1fr; min-height: auto; }
  .testimonial-split .ts-image { min-height: 320px; }
  .testimonial-split .ts-content { padding: 50px 32px; }
}

/* === CONTACT 3-COL ICON CARDS (homepage) === */
.contact-icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy);
  color: var(--cream-warm);
  text-align: center;
  padding: 70px 32px;
}
.contact-icon-block {
  padding: 0 30px;
  border-right: 1px solid rgba(232, 208, 152, 0.2);
}
.contact-icon-block:last-child { border-right: none; }
.contact-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.contact-icon-circle svg { width: 36px; height: 36px; }
.contact-icon-block h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--cream-warm);
  margin-bottom: 14px;
}
.contact-icon-block p,
.contact-icon-block a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(250, 246, 234, 0.9);
  line-height: 1.6;
  display: block;
}
.contact-icon-block a:hover { color: var(--gold-light); }
.contact-icon-block .closed-text { font-size: 15px; color: var(--gold-light); margin-top: 6px; }

@media (max-width: 980px) {
  .contact-icons-row { grid-template-columns: 1fr; padding: 50px 24px; gap: 40px; }
  .contact-icon-block { border-right: none; padding: 0; border-bottom: 1px solid rgba(232, 208, 152, 0.15); padding-bottom: 30px; }
  .contact-icon-block:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Tek menü kartı için merkezleme */
.menu-cards-single { grid-template-columns: 1fr !important; max-width: 560px; margin: 0 auto; }
.menu-cards-single .menu-card { padding: 60px 50px 56px; }
.menu-cards-single .menu-card .menu-card-icon { width: 80px; height: 80px; margin-bottom: 28px; }
.menu-cards-single .menu-card h3 { font-size: 36px; margin-bottom: 18px; }
.menu-cards-single .menu-card p { font-size: 16px; line-height: 1.7; }
@media (max-width: 720px) {
  .menu-cards-single .menu-card { padding: 44px 28px 40px; }
  .menu-cards-single .menu-card h3 { font-size: 28px; }
}


/* === Mobile nav drawer === */
@media (max-width: 980px) {
  .main-nav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream-warm, #FAF6EA);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border, rgba(184, 150, 46, 0.15));
    box-shadow: 0 8px 24px rgba(20, 40, 68, 0.08);
    z-index: 99;
  }
  .main-nav.open a {
    padding: 14px 16px;
    font-size: 16px;
    border-bottom: 1px solid rgba(20, 40, 68, 0.06);
    width: 100%;
    text-align: left;
  }
  .main-nav.open a:last-child { border-bottom: none; }
  .main-nav.open .header-cta-mobile {
    margin-top: 12px;
    background: var(--navy, #1E3A5F);
    color: var(--cream-warm, #FAF6EA);
    text-align: center;
    padding: 14px 18px;
    font-family: var(--font-ui, 'Inter');
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: none !important;
  }
}


/* Mobile Rezervasyon button — default hidden, görünür sadece açık menüde */
.header-cta-mobile { display: none !important; }
@media (max-width: 980px) {
  .main-nav.open .header-cta-mobile { display: block !important; }
}


/* === BLOG YAZISI SAYFASI === */
.blog-post-hero {
  padding: 140px 32px 60px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream-warm) 100%);
  text-align: center;
}
.blog-post-hero .meta {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.blog-post-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  color: var(--navy);
  max-width: 880px;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
}
.blog-post-hero .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

.blog-post-image {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.blog-post-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 32px 80px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy);
  margin: 56px 0 18px;
  line-height: 1.25;
}
.blog-post-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 12px;
}
.blog-post-body p {
  margin-bottom: 18px;
}
.blog-post-body strong {
  color: var(--navy);
  font-weight: 600;
}
.blog-post-body em {
  color: var(--gold);
  font-style: italic;
}
.blog-post-body ul, .blog-post-body ol {
  margin: 0 0 22px 0;
  padding-left: 28px;
}
.blog-post-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.blog-post-body blockquote {
  margin: 30px 0;
  padding: 22px 28px;
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--text-soft);
  border-radius: 0 4px 4px 0;
}
.blog-post-body .pro-tip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin: 26px 0;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.blog-post-body .pro-tip strong:first-child {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 8px;
  font-style: italic;
}

.blog-post-back {
  text-align: center;
  padding: 40px 32px 60px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.blog-post-back a {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 14px 32px;
  display: inline-block;
  transition: all .25s ease;
}
.blog-post-back a:hover {
  background: var(--navy);
  color: var(--cream-warm);
}

@media (max-width: 720px) {
  .blog-post-hero { padding: 110px 22px 40px; }
  .blog-post-image { padding: 0 22px; margin-bottom: 40px; }
  .blog-post-body { padding: 20px 22px 60px; font-size: 16px; }
  .blog-post-body h2 { margin: 40px 0 14px; }
}


/* Blog kartları tıklanabilir */
.blog-card-img a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.blog-card-img a:hover .bc-link { color: var(--gold); }
.blog-card-img a:hover .bc-img img { transform: scale(1.04); }
.bc-img { overflow: hidden; }
.bc-img img { transition: transform .6s ease; }
.bc-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  transition: color .2s ease;
}

/* === WhatsApp Card v1 === */
.whatsapp-card {
  background: linear-gradient(135deg, #f8faf6 0%, #f0f7ed 100%);
  border: 2px solid #e1efd8;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.08);
}
.whatsapp-card h3 {
  color: var(--navy, #1E3A5F);
  margin: 0 0 12px 0;
  font-size: 1.6rem;
}
.whatsapp-card > p:first-of-type {
  color: #555;
  margin: 0 0 28px 0;
  line-height: 1.6;
  font-size: 1rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff !important;
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-whatsapp:hover {
  background: #1faa54;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}
.whatsapp-note {
  margin: 24px 0 0 0;
  color: #666;
  font-size: 0.95rem;
}
.whatsapp-note a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .whatsapp-card { padding: 32px 20px; }
  .btn-whatsapp { padding: 16px 28px; font-size: 1.05rem; width: 100%; }
}
