/* ============================================================
   AVUKAT WEB SİTESİ – ANA STİL DOSYASI
   Renkler ve fontlar site.config.js'ten otomatik gelir.
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--bg-alt);
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .section--split { grid-template-columns: 1fr; gap: 2rem; }
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__footer {
  text-align: center;
  margin-top: 2.5rem;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section__eyebrow a {
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.section__eyebrow a:hover { opacity: 1; }

.mt-1 { margin-top: 1.2rem; }
.mt-2 { margin-top: 2rem; }

/* ── GRID ──────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
@media (max-width: 600px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  color: var(--text);
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: var(--font-heading);
  text-decoration: none;
}
.navbar__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  flex-shrink: 0;
}
.navbar__logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.navbar__logo-img {
  height: 40px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 820px) { .navbar__nav { display: none; } }

.navbar__link {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}
.navbar__link:hover { color: #fff; }
.navbar__link:hover::after,
.navbar__link.active::after { width: 60%; }
.navbar__link.active { color: #fff; }

.navbar__cta {
  margin-left: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.navbar__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.navbar__cta.active {
  outline: 2px solid rgba(255,255,255,0.4);
  outline-offset: 2px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 820px) { .navbar__hamburger { display: flex; } }
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer (mobile) */
.navbar__drawer {
  display: none;
  background: var(--primary);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 820px) {
  .navbar__drawer { display: block; max-height: 0; overflow: hidden; padding: 0 1.5rem; transition: max-height 0.35s ease, padding 0.35s; }
  .navbar__drawer.open { max-height: 480px; padding: 1.5rem; }
}
.navbar__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.navbar__drawer-link {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.navbar__drawer-link:hover { color: var(--accent); }
.navbar__drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.navbar__drawer-contact a {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 30px
    );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 680px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__emblem { display: none; }
}

.hero__content { max-width: 600px; }

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}
.hero__emblem-ring {
  width: 180px;
  height: 180px;
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── INFO BAND ─────────────────────────────────────────────── */
.info-band {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.info-band__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
@media (max-width: 700px) {
  .info-band__inner { flex-direction: column; }
  .info-band__divider { width: 100%; height: 1px; background: var(--border); }
}
.info-band__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 2rem;
  flex: 1;
}
.info-band__item > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.info-band__item small {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.info-band__item a,
.info-band__item span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.info-band__item a:hover { color: var(--accent); }
.info-band__icon { font-size: 1.4rem; }
.info-band__divider {
  width: 1px;
  background: var(--border);
  margin: 0.8rem 0;
}

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero--sm { padding: 2.5rem 0 2rem; }
.page-hero--tall { padding: 7rem 0 6rem; text-align: center; }
.page-hero--tall h1 { color: #fff; }
.page-hero--tall p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-top: 0.8rem; }

.post__date {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.card--area {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text);
  border-left: 3px solid transparent;
}
.card--area:hover { border-left-color: var(--accent); }
.card--area h3 { color: var(--primary); }
.card--area p { color: var(--text-light); font-size: 0.92rem; flex-grow: 1; }
.card__icon { font-size: 2rem; }
.card__icon--lg { font-size: 2.4rem; }
.card__arrow {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 0.5rem;
  display: block;
  transition: transform 0.2s;
}
.card:hover .card__arrow { transform: translateX(4px); }

.card--large .card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.card--large h2 {
  font-size: 1.3rem;
  margin: 0;
}
.card__cta {
  display: block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: letter-spacing 0.2s;
}
.card:hover .card__cta { letter-spacing: 0.03em; }

.card--post { color: var(--text); }
.card--post h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0.5rem 0;
  line-height: 1.35;
}
.card--post p { color: var(--text-light); font-size: 0.9rem; }
.card__area-tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.card__date {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: var(--primary);
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section p { opacity: 0.75; margin-top: 0.5rem; }
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ── QUOTE BLOCK ───────────────────────────────────────────── */
.quote-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
}
.quote-block__mark {
  width: 48px;
  height: 40px;
  display: block;
  margin-bottom: 1rem;
}
.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--primary);
  font-style: italic;
}
.quote-block span {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about__bar {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0.4rem 0 1.2rem;
}
.about__bio { color: var(--text); line-height: 1.8; }
.about__info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  padding: 1.5rem;
}
.about__info-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.about__info-item:last-child { border-bottom: none; }
.about__info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.about__info-item a { color: var(--primary); font-weight: 500; }
.about__info-item a:hover { color: var(--accent); }

/* ── BLOG LIST ─────────────────────────────────────────────── */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.blog-card {
  display: block;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: background 0.2s;
  position: relative;
}
.blog-card:last-child { border-bottom: none; }
.blog-card:hover { background: var(--bg-alt); }
.blog-card:hover .blog-card__title { color: var(--accent); }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.blog-card__date { font-size: 0.8rem; color: var(--text-light); }
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.blog-card__summary { color: var(--text-light); font-size: 0.93rem; }
.blog-card__cta {
  display: block;
  margin-top: 0.8rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── PROSE (makale içeriği) ───────────────────────────────── */
.prose {
  line-height: 1.85;
  color: var(--text);
}
.prose p { margin-bottom: 1.2rem; }
.prose h2 { margin: 2rem 0 0.8rem; }
.prose h3 { margin: 1.5rem 0 0.6rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--primary); }

/* ── SIDEBAR ───────────────────────────────────────────────── */
.practice__sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}
.sidebar-card h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-card__list { display: flex; flex-direction: column; gap: 0; }
.sidebar-card__list li a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-card__list li:last-child a { border-bottom: none; }
.sidebar-card__list li a:hover,
.sidebar-card__list li a.active {
  color: var(--accent);
  padding-left: 0.4rem;
}
.sidebar-card--contact {
  background: var(--primary);
  border-color: var(--primary);
}
.sidebar-card--contact h4 { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }
.sidebar-card--contact p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 0.4rem; }
.sidebar-card--contact a { color: var(--accent); }
.sidebar-card--contact a:hover { text-decoration: underline; }

.practice__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { height: 350px; }
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-card__icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-card h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.contact-card a, .contact-card p {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
}
.contact-card a:hover { color: var(--accent); }

.contact-map {
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

.contact-social { padding: 1.2rem 1.5rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; }
.contact-social h4 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.8rem; }
.contact-social__links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.contact-social__links a {
  padding: 0.3rem 0.9rem;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.contact-social__links a:hover { background: var(--accent); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.faq-item {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
}
.faq-item h4 { margin-bottom: 0.6rem; font-size: 1rem; }
.faq-item p { color: var(--text-light); font-size: 0.92rem; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.footer__bar { font-size: 0.8rem; color: var(--accent); margin-bottom: 0.8rem; }
.footer__tagline { font-size: 0.9rem; margin-bottom: 1.2rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover { background: var(--accent); color: var(--primary); }

.footer__links h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }

.footer__contact h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__contact p, .footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  display: block;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--accent); }
.footer__hours { margin-top: 0.5rem; color: var(--accent) !important; font-size: 0.82rem !important; }

.footer__bottom {
  background: rgba(0,0,0,0.2);
  padding: 1.2rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer__disclaimer { font-style: italic; }
