/* ============================================
   CORONADO PHOTO & MEDIA — Select Service entry page
   ============================================ */

.select-service {
  background: var(--cream-light);
  min-height: calc(100vh - 80px);
  padding: var(--space-7) 0 var(--space-8);
}

.select-service .container {
  max-width: 760px;
}

/* Header */
.select-service__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.select-service__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: var(--midnight);
  margin: var(--space-3) 0 var(--space-3);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.select-service__lead {
  font-size: var(--text-md);
  color: var(--text-on-light-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Service tiles grid */
.select-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 640px;
  margin: 0 auto var(--space-5);
}

@media (min-width: 600px) {
  .select-service__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

.service-tile {
  position: relative;
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: var(--space-5) var(--space-4);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all var(--t-base);
}

.service-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 31, 58, 0.08);
}

.service-tile:hover .service-tile__arrow {
  transform: translateX(4px);
  color: var(--gold);
}

.service-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.service-tile__icon svg {
  width: 22px;
  height: 22px;
}

.service-tile__title {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--midnight);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.service-tile__desc {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  line-height: 1.55;
  margin: 0;
}

.service-tile__arrow {
  position: absolute;
  top: var(--space-5);
  right: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-muted);
  transition: transform var(--t-base), color var(--t-base);
}

/* Note */
.select-service__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  font-style: italic;
  margin: 0 0 var(--space-7);
}

/* Direct channels at bottom */
.select-service__channels {
  text-align: center;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
  max-width: 480px;
  margin: 0 auto;
}

.select-service__channels-label {
  font-size: var(--text-sm);
  color: var(--text-on-light-muted);
  margin: 0 0 var(--space-3);
}

.select-service__channels-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

@media (max-width: 420px) {
  .select-service__channels-buttons {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}
