/* ================================================
   DROP FADE — Main Stylesheet
   Aesthetic: Editorial Barbershop — Dark, Gold, Sharp
   ================================================ */

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

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --dark2:   #1a1a1a;
  --dark3:   #242424;
  --gold:    #c8a96e;
  --gold-lt: #e0c896;
  --white:   #f5f2ec;
  --white2:  #d8d4cb;
  --muted:   #888070;
  --ff-head: 'Bebas Neue', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  --ff-italic:'Playfair Display', serif;
  --r: 4px;
  --nav-h: 72px;
  --section-gap: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--white2);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

em { font-family: var(--ff-italic); font-style: italic; color: var(--gold-lt); }

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-lt);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,169,110,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: .8rem; }

/* ─── SECTION HELPERS ─── */
.section { padding: var(--section-gap) 0; }
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.section h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.section-sub {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 48px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
  margin-top: 16px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 12px; color: var(--gold-lt); }

/* ─── NAVIGATION ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__logo {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  letter-spacing: .12em;
  color: var(--white);
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.4rem; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,.06) 0%, transparent 70%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}
.hero__content {
  grid-column: 1;
  padding: 80px 0 80px;
  z-index: 1;
}
.hero__eyebrow {
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .9;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero__title em { display: block; }
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
}
.hero__cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
}
.hero__visual::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.1);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.05); opacity: 1; }
}
.fade-svg { width: 100%; max-width: 320px; filter: drop-shadow(0 0 40px rgba(200,169,110,.08)); }

/* ─── WHAT IS ─── */
.what-is { background: var(--dark2); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.what-is__text h2 { margin-bottom: 20px; }
.what-is__text p { color: var(--white2); margin-bottom: 16px; font-size: 1rem; }
.what-is__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: var(--dark3);
  border: 1px solid rgba(200,169,110,.1);
  padding: 24px;
  border-radius: var(--r);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .3s, transform .3s;
}
.stat-card:hover { border-color: rgba(200,169,110,.4); transform: translateX(4px); }
.stat-card__num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.stat-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.stat-card p { font-size: .9rem; color: var(--muted); }

/* ─── STYLES GRID ─── */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.style-card {
  background: var(--dark2);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .3s, transform .3s;
}
.style-card:hover { border-color: rgba(200,169,110,.3); transform: translateY(-4px); }
.style-card__img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.style-card__img--1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.style-card__img--2 { background: linear-gradient(135deg, #1a0a0a 0%, #2d1b00 50%, #4a2e00 100%); }
.style-card__img--3 { background: linear-gradient(135deg, #0a1a0a 0%, #0f2d1b 50%, #1a4a2e 100%); }
.style-card__img--4 { background: linear-gradient(135deg, #1a0a1a 0%, #2d002d 50%, #4a0050 100%); }
.style-card__img--5 { background: linear-gradient(135deg, #1a1610 0%, #2d2418 50%, #4a3c28 100%); }
.style-card__img--6 { background: linear-gradient(135deg, #0a0a1a 0%, #101030 50%, #1a1a50 100%); }
.style-card__img::before {
  content: attr(style);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* silhouette placeholder shapes */
.style-card__img--1::after { content: '✦'; font-size: 4rem; color: rgba(200,169,110,.15); position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.style-card__img--2::after { content: '◈'; font-size: 4rem; color: rgba(200,169,110,.15); position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.style-card__img--3::after { content: '◇'; font-size: 4rem; color: rgba(200,169,110,.15); position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.style-card__img--4::after { content: '○'; font-size: 4rem; color: rgba(200,169,110,.15); position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.style-card__img--5::after { content: '△'; font-size: 4rem; color: rgba(200,169,110,.15); position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.style-card__img--6::after { content: '□'; font-size: 4rem; color: rgba(200,169,110,.15); position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.style-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.style-card__overlay span { font-size: .72rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.style-card__body { padding: 20px; }
.style-card__body h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.style-card__body p { font-size: .88rem; color: var(--muted); }

/* ─── HOW TO ─── */
.how-to { background: var(--dark2); }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--ff-head);
  font-size: 3rem;
  color: rgba(200,169,110,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: right;
  transition: color .3s;
}
.step:hover .step__num { color: var(--gold); }
.step__content h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.step__content p { font-size: .92rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-item summary {
  list-style: none;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .3s;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 0 20px;
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── BLOG TEASER ─── */
.blog-teaser { background: var(--dark2); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; margin-top: 40px; align-items: start; }
.blog-card--featured {
  background: var(--dark3);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: var(--r);
  padding: 36px;
}
.blog-card__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.blog-card--featured h3 { font-family: var(--ff-head); font-size: 1.6rem; letter-spacing: .02em; color: var(--white); margin-bottom: 12px; }
.blog-card--featured a { color: inherit; }
.blog-card--featured a:hover { color: var(--gold); }
.blog-card--featured p { color: var(--muted); font-size: .94rem; margin-bottom: 12px; }
.blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--r);
  color: var(--white2);
  font-size: .85rem;
  transition: all .25s;
}
.blog-more:hover { border-color: var(--gold); color: var(--gold); }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,.1);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand .nav__logo { font-size: 1.4rem; }
.footer__brand p { color: var(--muted); font-size: .88rem; margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer__links h4 { color: var(--white); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
}
.footer__bottom p { font-size: .82rem; color: var(--muted); text-align: center; }

/* ─── PAGE HERO (blog) ─── */
.page-hero {
  padding: 72px 0;
  border-bottom: 1px solid rgba(200,169,110,.1);
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,.05) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.page-hero__sub { color: var(--muted); font-size: 1rem; }

/* ─── BLOG INDEX ─── */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.blog-list-card {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.blog-list-card__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.blog-list-card__meta time { font-size: .8rem; color: var(--muted); }
.blog-list-card h2 { font-family: var(--ff-head); font-size: 1.8rem; color: var(--white); letter-spacing: .02em; margin-bottom: 12px; }
.blog-list-card h2 a { color: inherit; }
.blog-list-card h2 a:hover { color: var(--gold); }
.blog-list-card p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.coming-soon-card {
  padding: 36px;
  border: 1px dashed rgba(200,169,110,.2);
  border-radius: var(--r);
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 24px;
}
.coming-soon-card span { display: block; font-size: 1.5rem; margin-bottom: 12px; color: var(--gold); }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-widget {
  background: var(--dark2);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: var(--r);
  padding: 24px;
}
.sidebar-widget h3 { color: var(--white); font-size: .95rem; font-weight: 600; margin-bottom: 10px; }
.sidebar-widget p { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.sidebar-faq { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-faq a { font-size: .88rem; color: var(--gold); }

/* ─── BLOG POST ─── */
.post__header {
  padding: 72px 0 48px;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,.05) 0%, transparent 70%);
  border-bottom: 1px solid rgba(200,169,110,.1);
}
.post__header-inner { max-width: 760px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--muted); margin-bottom: 24px; }
.breadcrumb span { color: rgba(255,255,255,.2); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.post__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.post__meta time { font-size: .8rem; color: var(--muted); }
.post__header h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 20px;
}
.post__intro { font-size: 1.05rem; color: var(--white2); line-height: 1.8; }
.post__body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
}
.post__content h2 {
  font-family: var(--ff-head);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: .02em;
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(200,169,110,.1);
}
.post__content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.post__content p { color: var(--white2); font-size: .97rem; line-height: 1.9; margin-bottom: 16px; }
.post__content strong { color: var(--white); }
.placeholder-notice {
  background: rgba(200,169,110,.07);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 32px;
}
.placeholder-notice span { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.placeholder-notice p { font-size: .88rem; color: var(--muted); margin: 0; }
.placeholder-block {
  background: var(--dark3);
  border-left: 3px solid rgba(200,169,110,.3);
  padding: 20px 24px;
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 16px;
}
.placeholder-block p { color: var(--muted); font-style: italic; font-size: .92rem; margin: 0; }
.placeholder-block a { color: var(--gold); }
.post__cta-box {
  background: var(--dark2);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--r);
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
.post__cta-box h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.post__cta-box p { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.post__sidebar { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.toc { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc li { counter-increment: toc; }
.toc a { font-size: .88rem; color: var(--muted); transition: color .2s; display: flex; gap: 8px; }
.toc a:hover { color: var(--gold); }
.post__footer-nav { background: var(--dark2); border-top: 1px solid rgba(255,255,255,.06); }
.post-nav-links { display: flex; justify-content: space-between; gap: 24px; }
.post-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(200,169,110,.1);
  border-radius: var(--r);
  color: var(--white2);
  transition: border-color .25s, transform .25s;
  flex: 1;
}
.post-nav-link:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--white2); }
.post-nav-link--right { justify-content: flex-end; text-align: right; }
.post-nav-link small { display: block; font-size: .75rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.post-nav-link strong { display: block; font-size: 1rem; color: var(--white); }
.post-nav-link span { font-size: 1.4rem; color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__content { padding: 80px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .styles-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--dark); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(200,169,110,.1); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .post__body { grid-template-columns: 1fr; }
  .post__sidebar { position: static; }
  .post-nav-links { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__cta-group { flex-direction: column; align-items: flex-start; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow { animation: fadeUp .6s ease both; }
.hero__title   { animation: fadeUp .6s .1s ease both; }
.hero__sub     { animation: fadeUp .6s .2s ease both; }
.hero__cta-group { animation: fadeUp .6s .3s ease both; }
