/* ============================================
   BRAZZ Timepieces — Owner's Guide Stylesheet
   ============================================ */

/* ── Guide Hero ── */
.guide-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 4rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.guide-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(154, 125, 74, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.guide-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.guide-hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.guide-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.guide-hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.guide-hero-watch {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
}

.guide-hero-watch img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* ── Table of Contents ── */
.guide-toc {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.guide-toc-inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}

.guide-toc-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.6rem 1rem;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s, background 0.3s;
  border-right: 1px solid var(--border);
  min-width: 120px;
  position: relative;
}

.guide-toc-item:last-child {
  border-right: none;
}

.guide-toc-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.guide-toc-item:hover {
  color: var(--text-primary);
  background: rgba(154, 125, 74, 0.04);
}

.guide-toc-item:hover::after {
  width: 40px;
}

.guide-toc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.guide-toc-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* ── Guide Sections ── */
.guide-section {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.guide-section--alt {
  background: var(--bg-secondary);
}

.guide-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.guide-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.guide-section-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(154, 125, 74, 0.15);
  line-height: 1;
  letter-spacing: -0.02em;
}

.guide-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.guide-section-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .guide-section-body {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }

  .guide-section-body--reverse {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.guide-section-text p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.guide-section-text p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Placeholder Images ── */
.guide-placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 6px;
  min-height: 280px;
  transition: border-color 0.3s;
}

.guide-placeholder-img:hover {
  border-color: var(--gold);
}

.guide-placeholder-img svg {
  width: 48px;
  height: 48px;
  stroke: var(--steel);
  opacity: 0.4;
}

.guide-placeholder-img span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ── Step-by-Step Instructions ── */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.guide-step:last-child {
  border-bottom: none;
}

.guide-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px;
}

.guide-step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.guide-step-content p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ── Crown Position Diagram ── */
.guide-crown-diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
}

.guide-crown-positions {
  display: flex;
  align-items: center;
  gap: 0;
}

.guide-crown-pos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  min-width: 80px;
}

.guide-crown-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-primary);
  transition: all 0.3s;
}

.guide-crown-dot.active {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(154, 125, 74, 0.15);
}

.guide-crown-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.guide-crown-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--steel);
  text-align: center;
}

.guide-crown-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-bottom: 2.8rem;
}

/* ── Warning Block ── */
.guide-warning {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(192, 57, 43, 0.04);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: 6px;
  margin-top: 2rem;
}

.guide-warning svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: #c0392b;
  margin-top: 2px;
}

.guide-warning div {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.guide-warning strong {
  color: #c0392b;
  font-weight: 600;
}

/* ── Water Resistance Grid ── */
.guide-water-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

@media (max-width: 480px) {
  .guide-water-grid {
    grid-template-columns: 1fr;
  }
}

.guide-water-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.guide-water-card:hover {
  transform: translateY(-2px);
}

.guide-water-safe:hover {
  border-color: #27ae60;
}

.guide-water-avoid:hover {
  border-color: #c0392b;
}

.guide-water-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.guide-water-safe .guide-water-icon {
  background: rgba(39, 174, 96, 0.08);
}

.guide-water-safe .guide-water-icon svg {
  width: 16px;
  height: 16px;
  stroke: #27ae60;
}

.guide-water-avoid .guide-water-icon {
  background: rgba(192, 57, 43, 0.08);
}

.guide-water-avoid .guide-water-icon svg {
  width: 16px;
  height: 16px;
  stroke: #c0392b;
}

.guide-water-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.guide-water-card ul {
  list-style: none;
  padding: 0;
}

.guide-water-card ul li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.guide-water-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.guide-water-safe ul li::before {
  background: #27ae60;
}

.guide-water-avoid ul li::before {
  background: #c0392b;
}

/* ── Note text ── */
.guide-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--steel);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  line-height: 1.65;
  margin-top: 1rem;
}

/* ── Care & Maintenance Grid ── */
.guide-care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .guide-care-grid {
    grid-template-columns: 1fr;
  }
}

.guide-care-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.guide-care-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.guide-care-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(154, 125, 74, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.guide-care-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.guide-care-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.guide-care-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Closing / Need Help ── */
.guide-closing {
  text-align: center;
  padding: 8rem 2rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.guide-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(154, 125, 74, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.guide-closing-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.guide-closing-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.guide-closing-btn {
  display: inline-flex;
}

/* ── Responsive Tweaks ── */
@media (max-width: 768px) {
  .guide-hero {
    min-height: 70vh;
    padding: 100px 1.5rem 3rem;
  }

  .guide-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .guide-hero-sub {
    font-size: 0.92rem;
  }

  .guide-hero-watch img {
    max-height: 160px;
  }

  .guide-toc-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .guide-toc-item {
    min-width: 100px;
    padding: 1.2rem 0.6rem;
  }

  .guide-toc-text {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .guide-section {
    padding: 4rem 1.5rem;
  }

  .guide-section-header {
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .guide-section-num {
    font-size: 2rem;
  }

  .guide-section-body,
  .guide-section-body--reverse {
    grid-template-columns: 1fr !important;
  }

  .guide-closing {
    padding: 5rem 1.5rem;
  }
}
