/* =========================================================
   Specialty pages — shared styles
   ========================================================= */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: var(--muted); }
.breadcrumb .current { color: var(--forest); font-weight: 600; }

/* ========================= HERO ========================= */
.spec-hero {
  padding: 40px 0 60px;
  background: var(--cream);
}
.spec-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.spec-hero-copy .eyebrow {
  color: var(--sage-muted);
}
.spec-hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.spec-hero-copy h1 em {
  color: var(--tan);
  font-style: italic;
}
.spec-hero-desc {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.spec-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.spec-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-2);
}
.spec-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================= SECTIONS ========================= */
.spec-section {
  padding: 80px 0;
}
.spec-section--alt {
  background: var(--cream-2);
}

/* Content grid (text + sidebar) */
.spec-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.spec-content-grid--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.spec-content-grid--reverse > :last-child {
  order: -1;
}

.spec-content-body .eyebrow {
  color: var(--sage-muted);
}
.spec-content-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.spec-content-body p {
  line-height: 1.75;
  margin-bottom: 14px;
  color: var(--body);
}

/* Info card (sidebar) */
.spec-info-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
}
.spec-info-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--ink);
}

/* Checklist */
.spec-check-list {
  list-style: none;
}
.spec-check-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.5;
}
.spec-check-list li:last-child { border-bottom: none; }
.spec-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--forest);
}
.spec-check-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 19px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(-45deg);
}

/* Visual card */
.spec-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-2);
}
.spec-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================= STEPS ========================= */
.spec-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-step {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all .3s var(--ease);
}
.spec-step:hover {
  transform: translateY(-4px);
  border-color: var(--mint-deep);
  box-shadow: 0 20px 40px -20px rgba(30,70,50,.15);
}
.spec-step-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--tan);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1;
}
.spec-step h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.spec-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================= BENEFIT LIST ========================= */
.spec-benefit-list {
  list-style: none;
  margin-top: 8px;
}
.spec-benefit-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.spec-benefit-list li:last-child { border-bottom: none; }
.spec-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.spec-benefit-icon svg { width: 20px; height: 20px; }
.spec-benefit-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.spec-benefit-list span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ========================= FAQ ========================= */
.spec-faq {
  max-width: 800px;
  margin: 0 auto;
}
.spec-faq-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s;
}
.spec-faq-item[open] {
  border-color: var(--mint-deep);
}
.spec-faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.spec-faq-item summary::-webkit-details-marker { display: none; }
.spec-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--forest);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.spec-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.spec-faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
}

/* ========================= OTHER SPECIALTIES ========================= */
.spec-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spec-other-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.spec-other-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint-deep);
  box-shadow: 0 20px 40px -20px rgba(30,70,50,.15);
}
.spec-other-icon {
  width: 52px;
  height: 52px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.spec-other-icon svg { width: 24px; height: 24px; }
.spec-other-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.spec-other-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1080px) {
  .spec-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .spec-hero-visual { max-height: 400px; }
  .spec-content-grid { grid-template-columns: 1fr; gap: 36px; }
  .spec-content-grid--reverse > :last-child { order: 0; }
  .spec-steps { grid-template-columns: repeat(2, 1fr); }
  .spec-other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .spec-hero { padding: 24px 0 40px; }
  .spec-section { padding: 56px 0; }
  .spec-steps { grid-template-columns: 1fr; }
  .spec-other-grid { grid-template-columns: 1fr; }
  .spec-hero-copy h1 { font-size: 32px; }
  .spec-hero-desc { font-size: 14.5px; }
  .spec-info-card { padding: 24px; }
  .spec-faq-item summary { padding: 16px 20px; font-size: 14px; }
  .spec-faq-item p { padding: 0 20px 16px; font-size: 13.5px; }
}
@media (max-width: 560px) {
  .spec-hero { padding: 16px 0 32px; }
  .spec-hero-copy h1 { font-size: 26px; }
  .spec-hero-desc { font-size: 14px; margin-bottom: 24px; }
  .spec-hero-actions { flex-direction: column; }
  .spec-hero-actions .btn { width: 100%; justify-content: center; }
  .spec-hero-visual { max-height: 300px; }
  .spec-section { padding: 40px 0; }
  .spec-content-grid { gap: 28px; }
  .spec-content-body h2 { font-size: 22px; }
  .spec-info-card { padding: 20px; }
  .spec-step { padding: 24px 20px; }
  .spec-step-num { font-size: 28px; }
  .spec-step h3 { font-size: 16px; }
  .spec-other-card { padding: 24px 20px; }
  .spec-other-card h3 { font-size: 16px; }
  .spec-faq { margin: 0; }
  .spec-faq-item summary { padding: 14px 16px; font-size: 13.5px; }
  .spec-faq-item p { padding: 0 16px 14px; font-size: 13px; }
  .spec-check-list li { font-size: 13.5px; }
  .breadcrumb { font-size: 12px; flex-wrap: wrap; }
}
