/* Service page specific styles (extends main.css) */

.page-hero { padding-top: 66px; background: var(--sand); padding-bottom: 80px; }
.ph-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 80px; }
.ph-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.ph-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--teal); }
h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 600; letter-spacing: -.035em; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--teal); }
.ph-sub { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--text-mid); margin-bottom: 32px; }
.ph-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-p { background: var(--navy); color: #fff; } .btn-p:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-g { background: transparent; color: var(--navy); border: 1px solid var(--border); font-weight: 400; } .btn-g:hover { border-color: var(--navy); transform: translateY(-2px); }
.ph-img { border-radius: var(--rc); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.ph-img-placeholder { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, oklch(85% .025 220) 0, oklch(85% .025 220) 1px, transparent 1px, transparent 14px), oklch(80% .035 220); display: flex; align-items: center; justify-content: center; }
.ph-img span { font-family: monospace; font-size: 11px; color: oklch(50% .04 220); text-align: center; line-height: 1.6; }
.ph-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

section { padding: 80px 0; }
.sec-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.sec-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--teal); }
h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 600; letter-spacing: -.03em; color: var(--navy); line-height: 1.15; margin-bottom: 14px; }
.sec-sub { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.7; max-width: 520px; margin-bottom: 48px; }

.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fmt-card { background: var(--sand); border-radius: var(--rc); padding: 28px; border: 1px solid var(--border); }
.fmt-num { font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--teal); margin-bottom: 16px; }
.fmt-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
.fmt-desc { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
.fmt-price { font-size: 15px; font-weight: 500; color: var(--navy); margin-top: 14px; }

.pricing-table { border: 1px solid var(--border); border-radius: var(--rc); overflow: hidden; }
.pt-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.pt-row:last-child { border-bottom: none; }
.pt-row.head { background: var(--navy); }
.pt-cell { padding: 16px 20px; font-size: 14px; color: var(--text-mid); }
.pt-row.head .pt-cell { color: rgba(255,255,255,.7); font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.pt-cell.bold { font-weight: 500; color: var(--navy); }
.pt-cell.accent { font-weight: 600; color: var(--teal); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-item { border-radius: var(--rc); overflow: hidden; aspect-ratio: 3/4; background: repeating-linear-gradient(-45deg, oklch(91% .018 220) 0, oklch(91% .018 220) 1px, transparent 1px, transparent 12px), oklch(87% .025 220); display: flex; align-items: center; justify-content: center; position: relative; }
.gal-item span { font-family: monospace; font-size: 9px; color: oklch(52% .04 220); text-align: center; line-height: 1.6; }
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.cta-strip { background: var(--navy); border-radius: var(--rc); padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-strip-title { font-size: clamp(22px, 2.5vw, 30px); font-weight: 600; letter-spacing: -.03em; color: #fff; margin-bottom: 8px; }
.cta-strip-sub { font-size: 15px; font-weight: 300; color: oklch(72% .03 240); }
.btn-cta { padding: 14px 28px; background: var(--teal); color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 500; border: none; border-radius: var(--r); cursor: pointer; white-space: nowrap; transition: opacity .2s, transform .15s; text-decoration: none; display: inline-flex; }
.btn-cta:hover { opacity: .88; transform: translateY(-2px); }

/* Marketplace badges */
.marketplace-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.mp-badge { padding: 7px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-mid); background: var(--white); }

/* Nav back arrow on service pages */
.nav-back { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.nav-back:hover { color: var(--navy); }

@media (max-width: 900px) {
  .ph-inner { grid-template-columns: 1fr; }
  .ph-img { display: none; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .formats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 28px; }
}
