/* ============================================
   MARDİN EVDEN EVE NAKLİYAT
   Magazine Style | Turuncu & Beyaz
   Emixhas Yazılım
   ============================================ */

:root {
  --primary: #D94F15;
  --primary-dark: #B03D0B;
  --primary-light: #FF7030;
  --primary-soft: #FFF1E8;
  --primary-cream: #FEF6EF;
  --accent: #2B1810;
  --text: #1a0f0a;
  --text-muted: #6b5d56;
  --text-light: #9a8e86;
  --bg: #ffffff;
  --bg-cream: #FEF9F4;
  --bg-warm: #FAEFE5;
  --border: #EDE4DC;
  --border-light: #F5EDE4;
  --wa-green: #25D366;
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(217,79,21,0.04);
  --shadow: 0 10px 30px rgba(217,79,21,0.08);
  --shadow-lg: 0 25px 60px rgba(217,79,21,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 960px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; transition: all 0.25s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }

p { margin-bottom: 18px; color: var(--text-muted); }

.overline {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.overline::before, .overline::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--primary);
}
.overline::before { display: none; }

/* ========= TOPBAR ========= */
.topbar {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left span::before { content: "·  "; color: var(--primary-light); }
.topbar-left span:first-child::before { display: none; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a {
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-right a:hover { color: var(--primary-light); }

/* ========= HEADER ========= */
.header {
  background: var(--bg);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.04); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

/* Logo - Mardin mimari esintili: kemer + M */
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 54px; height: 54px;
  position: relative;
  transition: transform 0.3s;
}
.logo:hover .logo-mark { transform: scale(1.05); }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-text small {
  color: var(--primary);
  font-size: 0.68rem;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ========= NAVIGATION ========= */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.main-nav a {
  color: var(--text);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px; right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--primary); font-weight: 700; }

.header-cta { display: flex; gap: 10px; align-items: center; }
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: inherit;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217,79,21,0.35);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: white;
}
.btn-whatsapp:hover { background: #1ea952; color: white; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37,211,102,0.3); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-ghost {
  background: var(--primary-soft);
  color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: white; }

/* ========= HERO - MAGAZINE STYLE ========= */
.hero {
  padding: 80px 0 100px;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
/* Dekoratif Mardin kemeri arka planda */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, var(--primary-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Sol kolon - meta + quote */
.hero-left {
  padding-top: 60px;
  border-top: 3px solid var(--accent);
}
.hero-issue {
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-issue strong { color: var(--primary); }
.hero-left-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
  margin: 24px 0;
}
.hero-left-attrib {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Orta kolon - ana başlık */
.hero-center {
  text-align: center;
  padding: 0 20px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-center h1 {
  margin-bottom: 28px;
}
.hero-center h1 .ornament {
  display: block;
  font-size: 0.45em;
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.hero-center .accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 900;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--border);
}
.hero-divider-ornament {
  color: var(--primary);
  font-size: 1.2rem;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sağ kolon - istatistikler (gazete panel) */
.hero-right {
  padding-top: 60px;
  border-top: 3px solid var(--accent);
}
.hero-right h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--sans);
  font-weight: 700;
}
.stat-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.stat-line:last-child { border: none; }
.stat-line .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-line .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  max-width: 140px;
}

/* ========= SECTIONS ========= */
section { padding: 90px 0; }
.section-title { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-title .overline { justify-content: center; }
.section-title h2 { margin-bottom: 16px; }
.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.bg-cream { background: var(--bg-cream); }
.bg-warm { background: var(--bg-warm); }
.bg-dark {
  background: var(--accent);
  color: white;
}
.bg-dark h2, .bg-dark h3 { color: white; }
.bg-dark p { color: rgba(255,255,255,0.8); }

/* ========= SERVICES - MAGAZINE EDITORIAL GRID ========= */
.services-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.service-article {
  background: white;
  border: 1px solid var(--border-light);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
}
.service-article::before {
  content: attr(data-num);
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-soft);
  line-height: 1;
  z-index: 0;
}
.service-article:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-article > * { position: relative; z-index: 1; }
.service-article .category {
  font-size: 0.72rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-article h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-article p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-article .read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 3px;
  transition: gap 0.2s;
}

/* Editorial column spans */
.svc-large { grid-column: span 6; }
.svc-medium { grid-column: span 4; }
.svc-small { grid-column: span 4; }
.svc-wide { grid-column: span 8; }
.svc-half { grid-column: span 6; }

/* ========= FEATURED STORY (öne çıkan) ========= */
.featured-story {
  background: var(--accent);
  color: white;
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  grid-column: span 12;
}
.featured-story::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
  opacity: 0.25;
  pointer-events: none;
}
.featured-story-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.featured-story .tag {
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
}
.featured-story h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.featured-story p { color: rgba(255,255,255,0.85); margin-bottom: 26px; font-size: 1.05rem; }
.featured-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.featured-story-stat {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.featured-story-stat .n {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 6px;
}
.featured-story-stat .l {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========= NEWSPAPER COLUMNS ========= */
.columns-3 {
  column-count: 3;
  column-gap: 40px;
  margin: 40px 0;
}
.columns-3 p {
  break-inside: avoid;
  color: var(--text);
  line-height: 1.8;
}
.columns-3 p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 900;
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
  color: var(--primary);
}

/* ========= PROCESS - TIMELINE STYLE ========= */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--primary);
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  padding: 30px 0;
  position: relative;
}
.timeline-num {
  width: 58px;
  height: 58px;
  background: white;
  border: 3px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.3rem;
  z-index: 2;
  position: relative;
}
.timeline-content {
  background: white;
  padding: 24px 28px;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary);
}
.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.timeline-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ========= REGIONS GRID (Mardin ilçeleri) ========= */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.region-item {
  background: white;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.region-item:hover {
  background: var(--primary-soft);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: var(--shadow);
  position: relative;
}
.region-item .marker {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.region-item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text);
}
.region-item small {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========= PARTNERS ========= */
.partners-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
}
.partner-card {
  background: white;
  padding: 34px 28px;
  transition: all 0.3s;
}
.partner-card:hover {
  background: var(--bg-cream);
  transform: translateY(-3px);
}
.partner-card .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
}
.partner-card h4 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: var(--serif);
}
.partner-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.partner-card a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

/* ========= TESTIMONIALS - Editorial Reviews ========= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.review-item {
  background: white;
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.review-item:hover { background: var(--bg-cream); }
.review-quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--primary-soft);
  line-height: 0.7;
  margin-bottom: 8px;
  font-weight: 900;
}
.review-item p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.review-stars { color: #E8A33F; margin-bottom: 14px; letter-spacing: 3px; font-size: 1rem; }
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-author strong {
  color: var(--text);
  font-weight: 700;
  font-family: var(--sans);
  display: block;
  font-size: 0.95rem;
}
.review-author small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ========= FAQ - Editorial ========= */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: white;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item.open { background: var(--bg-cream); }
.faq-question {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--text);
  font-size: 1.15rem;
  gap: 20px;
}
.faq-toggle {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 32px 30px; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; }

/* ========= CTA SECTION ========= */
.cta-section {
  background: var(--accent);
  color: white;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 40px,
      rgba(217, 79, 21, 0.04) 40px,
      rgba(217, 79, 21, 0.04) 80px
    );
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 2; }
.cta-section .overline { color: var(--primary-light); }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ========= BLOG GRID ========= */
.blog-magazine {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.blog-post {
  background: white;
  border: 1px solid var(--border-light);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
}
.blog-post:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-post .category {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.blog-post h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.25;
}
.blog-post h3 a { color: var(--text); }
.blog-post h3 a:hover { color: var(--primary); }
.blog-post p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.blog-post-meta {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-post-meta .read {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.blog-lead { grid-column: span 8; }
.blog-normal { grid-column: span 4; }

/* ========= POST ========= */
.post-hero {
  background: var(--bg-cream);
  padding: 70px 0 50px;
  border-bottom: 3px solid var(--accent);
}
.post-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px;
}
.post-content h2 { margin-top: 44px; margin-bottom: 18px; color: var(--text); font-size: 2rem; }
.post-content h3 { margin-top: 32px; color: var(--text); font-size: 1.35rem; }
.post-content p { color: var(--text); line-height: 1.9; font-size: 1.1rem; margin-bottom: 20px; font-family: var(--serif); font-weight: 400; }
.post-content ul, .post-content ol { margin: 20px 0 28px 24px; color: var(--text); font-family: var(--serif); }
.post-content li { margin-bottom: 10px; line-height: 1.8; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 24px 32px;
  margin: 32px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.5;
  background: var(--bg-cream);
}
.post-content strong { color: var(--primary-dark); font-weight: 700; }

/* ========= GALLERY ========= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid transparent;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  font-family: var(--sans);
}
.filter-btn:hover { color: var(--primary); }
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-cream);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--border-light);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary);
}
.gallery-item.placeholder .ph-ic { font-size: 3rem; margin-bottom: 10px; }
.gallery-item.placeholder p { color: var(--text-muted); font-size: 0.82rem; margin: 0; text-transform: uppercase; letter-spacing: 2px; }

/* ========= CONTACT ========= */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border: none; }
.contact-row-ic {
  width: 50px; height: 50px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  font-family: var(--serif);
  font-weight: 900;
}
.contact-row .info strong {
  color: var(--text-muted);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.contact-row .info a,
.contact-row .info span.val {
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--serif);
}
.contact-row .info a:hover { color: var(--primary); }

/* Contact Form */
.quote-form {
  background: var(--bg-cream);
  padding: 50px 40px;
  border-top: 3px solid var(--accent);
}
.quote-form h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.quote-form > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.form-group { margin-bottom: 18px; }
.quote-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 0;
  font-size: 1rem;
  background: white;
  font-family: inherit;
  transition: all 0.3s;
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.quote-form button { width: 100%; margin-top: 10px; }

/* ========= PAGE HEADER ========= */
.page-header {
  background: var(--bg-cream);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 3px solid var(--accent);
  position: relative;
}
.page-header .overline { justify-content: center; }
.page-header h1 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.page-header .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}
.breadcrumb {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.breadcrumb a { color: var(--primary); }

/* ========= CONTENT ========= */
.content-section { padding: 70px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.content-main h2 { margin-top: 40px; color: var(--text); }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--text); line-height: 1.9; font-size: 1.05rem; }
.content-main ul, .content-main ol { margin: 14px 0 22px 24px; }
.content-main li { margin-bottom: 8px; line-height: 1.8; }

.sidebar-box {
  background: var(--bg-cream);
  padding: 32px 28px;
  margin-bottom: 24px;
  border-top: 3px solid var(--primary);
}
.sidebar-box h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--text);
}
.sidebar-box ul { list-style: none; }
.sidebar-box ul li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.sidebar-box ul li:last-child { border: none; }
.sidebar-box ul a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.sidebar-box ul a:hover { color: var(--primary); padding-left: 6px; }

/* ========= FOOTER ========= */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text small { color: var(--primary-light); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 18px; line-height: 1.7; }
.footer h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--sans);
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer ul a:hover { color: var(--primary-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom a { color: var(--primary-light); font-weight: 600; }
.emixhas-signature {
  padding: 18px 20px;
  text-align: center;
  background: #150a05;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}
.emixhas-signature a {
  color: var(--primary-light);
  font-weight: 700;
  border-bottom: 1px dashed var(--primary-light);
  padding-bottom: 2px;
}

/* ========= MOBILE BOTTOM BAR ========= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 10px;
  z-index: 998;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.mobile-call-bar a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-call-bar .wa { background: var(--wa-green); color: white; }
.mobile-call-bar .ph { background: var(--primary); color: white; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .svc-large, .svc-medium, .svc-small, .svc-wide, .svc-half { grid-column: span 6; }
  .blog-lead, .blog-normal { grid-column: span 6; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left, .hero-right { border-top: 2px solid var(--accent); padding-top: 30px; }
  .featured-story-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .columns-3 { column-count: 2; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 20px;
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .mobile-toggle { display: block; }
  .header-inner { grid-template-columns: auto 1fr; }
  .header-cta .btn-primary { display: none; }
  .svc-large, .svc-medium, .svc-small, .svc-wide, .svc-half,
  .blog-lead, .blog-normal { grid-column: span 12; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .columns-3 { column-count: 1; }
  .topbar-left { display: none; }
  .mobile-call-bar { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 70px; }
  section { padding: 60px 0; }
  .container, .narrow { padding: 0 18px; }
  .service-article { padding: 32px 24px; }
  .service-article::before { font-size: 2.5rem; top: 20px; right: 20px; }
  .featured-story { padding: 50px 30px; }
}
