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

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

:root {
  --bg: #1a1a1a;
  --bg2: #222222;
  --bg3: #2a2a2a;
  --border: #333333;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-light: #bbbbbb;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold2); }

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

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,.95);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1.1;
}
.logo-text .sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 4px; }

nav > ul { list-style: none; display: flex; align-items: center; gap: 2px; }
nav > ul > li { position: relative; }

nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .25s;
  white-space: nowrap;
}
nav > ul > li > a:hover,
nav > ul > li.active > a {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}

/* dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--text-light);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,.06); padding-left: 24px; }
.dropdown-arrow { font-size: 9px; margin-left: 4px; opacity: .6; }

/* Nested dropdown */
.dropdown-submenu { position: relative; }
.dropdown-submenu-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 220px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.dropdown-submenu:hover .dropdown-submenu-menu { display: block; }
.dropdown-submenu-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--text-light);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.dropdown-submenu-menu a:last-child { border-bottom: none; }
.dropdown-submenu-menu a:hover { color: var(--gold); background: rgba(201,168,76,.06); padding-left: 24px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  color: var(--text-light);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav ul li a:hover { color: var(--gold); }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { font-size: 13px !important; color: var(--text-muted) !important; }

/* ========== PAGE BODY ========== */
main { padding-top: 72px; }

/* ========== HERO ========== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #2a2418 0%, #1a1a1a 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,.04) 0%, transparent 50%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 40px 24px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: .8;
}
.hero-quote {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 32px;
  opacity: .7;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 5vw, 28px);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-title strong { color: var(--gold); display: block; font-size: clamp(24px,6vw,40px); font-weight: 700; margin-top: 8px; }
.hero-sub {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,168,76,.3);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-badge::before, .hero-badge::after { content: '—'; opacity: .4; }

/* ========== SECTIONS ========== */
.section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-sm { padding: 60px 24px; max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-body {
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.9;
  font-size: 15px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--bg);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.about-section-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-image-col {
  flex: 0 0 auto;
}
.about-capsule {
  width: 260px;
  height: 380px;
  border-radius: 130px;
  border: 2px solid var(--white);
  padding: 6px;
  position: relative;
}
.about-capsule::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid var(--white);
  border-radius: 124px;
  pointer-events: none;
}
.about-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 122px;
  background: #000;
}

.about-text-col {
  flex: 1;
}
.about-quote-title {
  color: #e02424;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-quote-text {
  color: var(--white);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 600;
}

.about-footer-logo {
  text-align: center;
  margin-top: 60px;
}
.about-asa {
  color: #e02424;
  font-family: 'Cinzel', serif;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
}
.about-asa-sub {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-section-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.service-card {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background .25s;
  text-decoration: none;
  display: block;
}
.service-card:hover { background: var(--bg3); }
.service-number {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: .5;
}
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
  transition: color .25s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}
.service-arrow {
  margin-top: 24px;
  color: var(--gold);
  font-size: 18px;
  opacity: 0;
  transition: all .25s;
  display: block;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px 60px;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.page-hero .breadcrumb a { color: var(--text-muted); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { margin: 0 8px; opacity: .4; }
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 5vw, 48px);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero .page-hero-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== CONTENT BLOCK ========== */
.content-block { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.content-block p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 15px;
}
.content-block h2 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 22px;
  margin: 40px 0 16px;
  font-weight: 600;
}
.content-block h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 16px;
  margin: 32px 0 12px;
  letter-spacing: 1px;
}

/* ========== CASE STUDIES ========== */
.case-studies { padding: 0 24px 80px; max-width: 1200px; margin: 0 auto; }
.case-studies-title {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.case-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  text-decoration: none;
  display: block;
}
.case-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-2px); }
.case-card-img { height: 200px; overflow: hidden; background: var(--bg3); }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.case-card:hover .case-card-img img { transform: scale(1.04); }
.case-card-body { padding: 24px; }
.case-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: .7;
}
.case-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 17px;
  margin-bottom: 12px;
  transition: color .25s;
}
.case-card:hover h3 { color: var(--gold); }
.case-card p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.case-card-date { margin-top: 16px; font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }

/* ========== POSTS ========== */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; margin-top: 48px; }
.post-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s, transform .3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.post-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-3px); }
.post-card-thumb { height: 220px; background: var(--bg3); overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.05); }
.post-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.post-card h2 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
  transition: color .25s;
}
.post-card:hover h2 { color: var(--gold); }
.post-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; flex: 1; }
.post-card-meta { margin-top: 20px; font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.post-card-meta::before { content: ''; width: 20px; height: 1px; background: var(--border); }

/* ========== SINGLE POST ========== */
.post-single { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.post-single-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 48px;
  border: 1px solid var(--border);
}
.post-single-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; letter-spacing: 1px; }
.post-single p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 15px;
}

/* ========== SUBPAGES GRID ========== */
.subpages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.subpage-card {
  background: var(--bg2);
  padding: 36px 28px;
  text-decoration: none;
  display: block;
  transition: background .25s;
}
.subpage-card:hover { background: var(--bg3); }
.subpage-card-icon { font-size: 24px; margin-bottom: 16px; }
.subpage-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 12px;
  transition: color .25s;
}
.subpage-card:hover h3 { color: var(--gold); }
.subpage-card p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }

/* ========== ILETISIM ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.contact-value { color: var(--text-light); font-size: 14px; line-height: 1.6; }
.contact-value a { color: var(--text-light); }
.contact-value a:hover { color: var(--gold); }

.map-block { margin-top: 40px; }
.map-block h3 { font-family: 'Cinzel', serif; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; letter-spacing: 2px; }
.map-frame {
  width: 100%;
  height: 300px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(1) invert(1) contrast(.8); }

.contact-note {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
}
.contact-note p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ========== FOOTER ========== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.8; max-width: 300px; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-motto {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: .5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
}

/* ========== UTILS ========== */
.gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ========== CTA BUTTONS ========== */
.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .25s;
  text-decoration: none;
}
.btn-cta:hover { background: rgba(201,168,76,.2); color: var(--gold); }

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .25s;
  text-decoration: none;
}
.btn-outline:hover { border-color: rgba(201,168,76,.4); color: var(--gold); }

.btn-all {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .25s;
  text-decoration: none;
}
.btn-all:hover { border-color: rgba(201,168,76,.4); color: var(--gold); }

/* ========== BLOG PREVIEW STRIP ========== */
.blog-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.blog-strip-inner { max-width: 1200px; margin: 0 auto; }
.blog-strip-footer { text-align: center; margin-top: 40px; }

/* ========== CONTACT PAGE ========== */
.contact-info-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-right-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.contact-right-panel h3 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-right-panel > p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
}
.contact-services-list { display: flex; flex-direction: column; gap: 16px; }
.contact-service-box {
  padding: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-service-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-service-desc {
  color: var(--text-muted);
  font-size: 13px;
}
.contact-service-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
}
.contact-service-link:hover { color: var(--gold2); }

/* ========== PULLQUOTE ========== */
.pullquote {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.pullquote p {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 14px;
  margin: 0 !important;
}
.pullquote cite {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-style: normal;
}

/* ========== POST FOOTER NAV ========== */
.post-foot-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.post-foot-nav a { font-size: 13px; letter-spacing: 1px; }
.post-foot-nav a:first-child { color: var(--text-muted); }
.post-foot-nav a:first-child:hover { color: var(--gold); }

/* ========== CASE LINKS ========== */
.case-links { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ========== IMG CONTAIN ========== */
.img-contain { object-fit: contain !important; padding: 20px; background: var(--bg2); }
.img-contain-sm { object-fit: contain !important; background: var(--bg3); padding: 16px; }

/* ========== FOOTER BRAND MARGIN ========== */
.footer-brand-desc { color: var(--text-muted); font-size: 13px; line-height: 1.8; max-width: 300px; margin-top: 16px; }


.cta-wrap { margin-top: 48px; text-align: center; }
.page-hero-h1 { margin-top: 16px; }
.page-hero-meta { margin-top: 16px; }
.contact-note strong { color: var(--gold); }
.contact-extra { margin-top: 40px; }

/* ========== CASE DETAIL PAGE ========== */
.case-detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.case-detail-img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg2);
}
.case-detail-logo {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-detail-logo img { max-height: 160px; object-fit: contain; }
.case-meta-panel {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.case-meta-header {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.case-meta-list { display: flex; flex-direction: column; gap: 12px; }
.case-meta-item { }
.case-meta-item + .case-meta-item {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.case-meta-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.case-meta-value { color: var(--text-light); font-size: 13px; }

/* ========== POST HERO EXTRAS ========== */
.page-hero h1.mt-16 { margin-top: 16px; }
.post-hero-h1 { margin-top: 16px; }
.post-hero-meta { margin-top: 16px; }

/* ========== CONTACT EXTRA ========== */
.contact-note-wrap { margin-top: 40px; }
.contact-note strong { color: var(--gold); }

/* ========== CASE CONTENT WRAP ========== */
.case-content-block { padding: 0; max-width: 100%; }
.case-content-block p { color: var(--text-light); line-height: 1.9; margin-bottom: 24px; font-size: 15px; }
.case-content-block h2 { font-family: 'Cinzel', serif; color: var(--white); font-size: 22px; margin: 40px 0 16px; font-weight: 600; }
.case-content-block h3 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 16px; margin: 32px 0 12px; letter-spacing: 1px; }
.case-ref-links { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .case-detail-layout { grid-template-columns: 1fr; gap: 32px; }
}

.contact-note-wrap { margin-top: 40px; }
.contact-note strong, .contact-note-wrap strong { color: var(--gold); }
