/* ============================================
   PAGES.CSS — INNER PAGE COMPONENTS
   ============================================ */

/* ── PAGE HERO ── */
.page-hero {
  position: relative; height: 360px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--coal);
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,7,10,.78) 0%, rgba(8,7,10,.65) 100%);
}
.page-hero-content { position: relative; z-index: 1; color: #fff; padding: 0 2rem; }
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; letter-spacing: .05em;
  margin: .4rem 0 .6rem;
}
.page-hero-content p { color: rgba(255,255,255,.5); font-size: .95rem; letter-spacing: .05em; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--warm); border-bottom: 1px solid var(--border);
  padding: .75rem 0; font-size: .78rem;
}
.breadcrumb .container { display: flex; align-items: center; gap: .5rem; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

/* ── ABOUT PAGE ── */
.about-page-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 4rem; align-items: start;
}
.about-sidebar { position: sticky; top: 96px; }
.about-side-img { margin-bottom: 2rem; }
.about-side-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top;
  border-radius: 2px;
}
.about-side-contact {
  background: var(--white); padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.06); border-radius: 2px;
  border-top: 2px solid var(--gold);
}
.about-side-contact h3 {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400;
  color: var(--dark); margin-bottom: 1.5rem;
}

.about-main { display: flex; flex-direction: column; gap: 2rem; }
.about-text p { color: var(--muted); font-size: .95rem; line-height: 1.9; margin-bottom: 1.2rem; }

.about-video { border-radius: 2px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,0,0,.12); }
.about-video .video-frame { position: relative; }
.about-video .video-frame::before { content: ''; display: block; padding-top: 56.25%; }
.about-video .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.about-blockquote {
  border-right: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(201,169,110,.07);
  font-family: var(--font-serif); font-size: 1.3rem; font-style: italic;
  color: var(--dark); line-height: 1.5; border-radius: 0 2px 2px 0;
  position: relative;
}
.about-blockquote span {
  font-size: 3rem; color: var(--gold); opacity: .3; line-height: 0;
  position: absolute; top: 1.5rem; left: 1.5rem;
}
.about-blockquote cite {
  display: block; font-family: var(--font-sans); font-size: .78rem;
  font-style: normal; color: var(--gold); letter-spacing: .12em;
  text-transform: uppercase; margin-top: 1rem;
}
.about-address {
  background: var(--warm); border: 1px solid var(--border);
  padding: 1.5rem; border-radius: 2px; font-size: .9rem; line-height: 1.8;
}
.about-address a { color: var(--gold); }

/* ── ARTICLES GRID ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.art-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.art-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.1); transform: translateY(-5px); }

.art-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-decoration: none;
}
.art-thumb svg { width: 80px; height: 80px; transition: transform .4s var(--ease), opacity .4s; }
.art-card:hover .art-thumb svg { transform: scale(1.1); opacity: .75; }

/* Photo thumbnail */
.art-thumb-photo { background: var(--dark); }
.art-thumb-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease, filter .4s;
  filter: brightness(.82);
}
.art-card:hover .art-thumb-photo img { transform: scale(1.06); filter: brightness(.65); }

.art-cat {
  position: absolute; bottom: 0; right: 0;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: var(--gold); padding: .35rem .9rem;
}

.art-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.art-body h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400;
  color: var(--dark); margin-bottom: .75rem; line-height: 1.4;
}
.art-body h3 a { color: inherit; transition: color .2s; }
.art-body h3 a:hover { color: var(--gold); }
.art-body p { font-size: .85rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.2rem; }
.art-link {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
  transition: letter-spacing .25s; font-weight: 500;
}
.art-card:hover .art-link { letter-spacing: .22em; }

/* ── PRACTICE AREAS PAGE ── */
.pa-page-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.pa-col-box {
  background: var(--white); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); padding: 3rem;
  border-radius: 2px;
}
.pa-col-box h3 {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 400; color: var(--dark);
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.pa-col-box h4 {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  margin: 1.8rem 0 1rem;
}
.pa-col-box ul li {
  padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.04);
  font-size: .9rem; color: var(--muted);
  transition: color .2s, padding-right .2s;
}
.pa-col-box ul li:last-child { border-bottom: none; }
.pa-col-box ul li:hover { color: var(--gold); padding-right: 6px; }

/* ── CONTACT PAGE ── */
.contact-page-cols {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start;
}
.contact-map {
  margin-top: 2.5rem; height: 320px; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-page-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .pa-page-cols { grid-template-columns: 1fr; }
  .contact-page-cols { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 580px) {
  .articles-grid { grid-template-columns: 1fr; }
}
