/* ============================================================
   BLADE & CO — Inner Pages Stylesheet
   Extends style.css — always load after it
============================================================ */

/* ── Page Hero (compact) ─────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--dark-1);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.page-hero__bg {
  position: absolute; inset: -20%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  will-change: transform;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgb(125 69 0 / 10%) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
}
.page-hero__content .section-eyebrow { justify-content: flex-start; }
.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--grey-2);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: var(--grey-3);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--grey-3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { opacity: 0.5; }
.breadcrumb span { color: var(--gold); }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,169,110,0.15);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: center;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__content {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.3s;
}
.timeline-item__content:hover { border-color: rgba(201,169,110,0.2); }
.timeline-item--left .timeline-item__content { grid-column: 1; text-align: right; }
.timeline-item--right .timeline-item__content { grid-column: 3; }
.timeline-item__dot {
  grid-column: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-1);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  justify-self: center;
  color: var(--gold);
  font-family: var(--font-deco);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-item__year {
  display: block;
  font-family: var(--font-deco);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.timeline-item__content h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-item__content p {
  font-size: 0.87rem;
  color: var(--grey-2);
  line-height: 1.7;
}

/* ── Values Grid ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s, border-color 0.35s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(201,169,110,0.25); }
.value-card__num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 { font-family: var(--font-title); font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 0.87rem; color: var(--grey-2); line-height: 1.7; }

/* ── Services Detail ─────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(201,169,110,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-3);
}
.service-detail__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-detail__img:hover img { transform: scale(1.04); }
.service-detail__img .img-placeholder { min-height: unset; height: 100%; }
.service-detail__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex; flex-direction: column;
}
.service-detail__badge strong { color: var(--gold); font-size: 1.1rem; font-family: var(--font-title); }
.service-detail__badge span { color: var(--grey-2); font-size: 0.72rem; }
.service-detail__info h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-detail__info p { color: var(--grey-2); line-height: 1.8; margin-bottom: 16px; }
.service-detail__meta {
  display: flex; gap: 24px; margin-bottom: 28px;
}
.service-detail__meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.service-detail__meta-item span:first-child { font-size: 0.72rem; color: var(--grey-3); letter-spacing: 0.1em; text-transform: uppercase; }
.service-detail__meta-item strong { color: var(--gold); font-size: 1.1rem; font-family: var(--font-title); }
.service-steps {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.service-step {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; color: var(--grey-1);
}
.service-step__num {
  width: 24px; height: 24px; min-width: 24px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gold); font-weight: 600;
}

/* ── Blog Grid ───────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-grid {
  display: flex; flex-direction: column; gap: 32px;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: transform 0.35s, border-color 0.35s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,0.2); }
.blog-card--featured {
  grid-template-columns: 1fr;
}
.blog-card__img {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}
.blog-card--featured .blog-card__img { aspect-ratio: 16/7; }
.blog-card:not(.blog-card--featured) .blog-card__img { aspect-ratio: unset; }
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}
.blog-card__body { padding: 28px; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.78rem; color: var(--grey-3);
  margin-bottom: 12px;
}
.blog-card__meta span { display: flex; align-items: center; gap: 5px; }
.blog-card__body h2,
.blog-card__body h3 {
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card--featured .blog-card__body h2 { font-size: 1.7rem; }
.blog-card__body h3 { font-size: 1.15rem; }
.blog-card:hover h2,
.blog-card:hover h3 { color: var(--gold); }
.blog-card__excerpt { color: var(--grey-2); font-size: 0.88rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em;
  transition: gap 0.2s;
}
.blog-card__link:hover { gap: 10px; }

/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-widget h4 {
  font-family: var(--font-deco);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.sidebar-cats { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--grey-2); font-size: 0.87rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.sidebar-cat:hover { background: rgba(201,169,110,0.06); color: var(--gold); }
.sidebar-cat span { font-size: 0.75rem; color: var(--grey-3); background: var(--dark-3); padding: 2px 8px; border-radius: 10px; }
.sidebar-recent { display: flex; flex-direction: column; gap: 16px; }
.sidebar-post { display: flex; gap: 12px; }
.sidebar-post__img {
  width: 60px; height: 60px; min-width: 60px;
  border-radius: var(--radius);
  background: var(--dark-3);
  overflow: hidden;
}
.sidebar-post__img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post__info { display: flex; flex-direction: column; gap: 4px; }
.sidebar-post__info a {
  font-size: 0.85rem; color: var(--grey-1); line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-post__info a:hover { color: var(--gold); }
.sidebar-post__info span { font-size: 0.72rem; color: var(--grey-3); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
  font-size: 0.75rem;
  padding: 5px 12px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 20px;
  color: var(--grey-2);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-tag:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Blog pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.page-num {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.1);
  color: var(--grey-2);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.page-num:hover, .page-num.active { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }

/* ── Single Post ─────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.post-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 40px;
  background: var(--dark-3);
}
.post-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.post-meta__item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--grey-3);
}
.post-cat-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
}
.post-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}
.post-content {
  color: var(--grey-2);
  line-height: 1.9;
  font-size: 1rem;
}
.post-content h2 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--white);
  margin: 40px 0 16px;
}
.post-content h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--white);
  margin: 28px 0 12px;
}
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol {
  padding-left: 24px; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.post-content li { color: var(--grey-2); }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(201,169,110,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--grey-1);
  font-style: italic;
}
.post-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}
.post-divider {
  height: 1px;
  background: rgba(201,169,110,0.08);
  margin: 40px 0;
}
.post-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.post-tags span { font-size: 0.78rem; color: var(--grey-3); }
.post-share {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 48px;
}
.post-share span { font-size: 0.78rem; color: var(--grey-3); }
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-2);
  transition: var(--transition);
}
.share-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Author card */
.post-author {
  display: flex; gap: 20px;
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 48px;
}
.post-author__avatar {
  width: 72px; height: 72px; min-width: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}
.post-author__info { display: flex; flex-direction: column; gap: 6px; }
.post-author__role { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.05em; }
.post-author__info h4 { font-family: var(--font-title); font-size: 1.1rem; color: var(--white); }
.post-author__info p { font-size: 0.87rem; color: var(--grey-2); line-height: 1.6; }

/* Related posts */
.related-posts { display: flex; flex-direction: column; gap: 24px; }
.related-post {
  display: flex; gap: 16px;
  align-items: center;
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: border-color 0.3s;
}
.related-post:hover { border-color: rgba(201,169,110,0.2); }
.related-post__img {
  width: 80px; height: 80px; min-width: 80px;
  border-radius: var(--radius);
  background: var(--dark-3);
  overflow: hidden;
}
.related-post__img img { width: 100%; height: 100%; object-fit: cover; }
.related-post h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.related-post:hover h4 { color: var(--gold); }
.related-post span { font-size: 0.75rem; color: var(--grey-3); }

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s, border-color 0.35s;
}
.contact-card:hover { transform: translateY(-5px); border-color: rgba(201,169,110,0.2); }
.contact-card__icon {
  width: 64px; height: 64px;
  background: rgba(201,169,110,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.contact-card:hover .contact-card__icon { background: rgba(201,169,110,0.14); }
.contact-card h3 { font-family: var(--font-title); font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.contact-card p, .contact-card a {
  color: var(--grey-2); font-size: 0.88rem; line-height: 1.6;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--gold); }

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  min-height: 400px;
  display: flex; flex-direction: column;
}
.map-placeholder {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.map-placeholder p { color: var(--grey-3); font-size: 0.85rem; }
.map-placeholder code {
  background: var(--dark-4);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--grey-2); }
.hours-row span:last-child { color: var(--gold); font-weight: 500; }
.hours-row.today { background: rgba(201,169,110,0.04); padding: 10px 12px; border-radius: var(--radius); margin: 0 -12px; }
.hours-row.today span:first-child { color: var(--gold); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(201,169,110,0.2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  gap: 16px;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 24px;
  color: var(--grey-2);
  font-size: 0.88rem;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ── 404 Page ────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-404__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-404__num {
  font-family: var(--font-title);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.2);
  position: relative;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.page-404__num::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(201,169,110,0.1) 0%, transparent 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-404__scissors {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.page-404 h2 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-404 p { color: var(--grey-2); max-width: 420px; margin-bottom: 36px; line-height: 1.8; }
.page-404__links {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

/* ── Responsive: inner pages ─────────────────────────────── */
@media (max-width: 1000px) {
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 44px 1fr; }
  .timeline-item--left .timeline-item__content,
  .timeline-item--right .timeline-item__content { grid-column: 2; text-align: left; }
  .timeline-item__dot { grid-column: 1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail--reverse { direction: ltr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .post-author { flex-direction: column; }
}
@media (max-width: 600px) {
  .page-hero { padding: 130px 0 60px; }
  .page-404__num { font-size: 30vw; }
}
